-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup # type: ignore
# Initialize version variable for the linter, it will be assigned when version.py is evaluated
__version__ : str
exec(open('smot/version.py', "r").read())
with open("README.md", "r") as fh:
long_description = fh.read()
# Read the requirements from the requirements.txt file
with open("requirements.txt", "r") as fh:
requirements = [r.strip() for r in fh.readlines()]
setup(
name="smot",
version=__version__,
description="simple manipulation of trees",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flu-crew/smot",
author="Zebulun Arendsee",
author_email="[email protected]",
packages=["smot"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["smot=smot.main:main"]},
install_requires=requirements,
package_data={"smot": ["py.typed"]},
py_modules=["smot"],
zip_safe=False,
)