-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from bython import VERSION_NUMBER
with open("README.md", "r") as fh:
long_description = fh.read()
# Install python package, scripts and manual pages
setup(name="bython",
version=VERSION_NUMBER,
author="Mathias Lohne",
author_email="mathialo@ifi.uio.no",
license="MIT",
description="Python with braces",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mathialo/bython",
scripts=["scripts/by2py", "scripts/bython", "scripts/py2by"],
data_files=[("man/man1", ["etc/bython.1", "etc/py2by.1", "etc/by2py.1"])],
packages=["bython"],
zip_safe=False)