-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (40 loc) · 1.22 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
35
36
37
38
39
40
41
from setuptools import find_packages, setup
setup(
name="AlgoTree",
version="0.7.3",
author="Alex Towell",
author_email="[email protected]",
description="A algorithmic tookit for working with trees in Python",
long_description=open("README.rst").read(),
long_description_content_type="text/x-rst",
packages=find_packages() + ['bin'],
url='https://github.com/queelius/AlgoTree',
project_urls={
"Documentation": "https://queelius.github.io/AlgoTree/",
"Source Code": "https://github.com/queelius/AlgoTree",
"Issue Tracker": "https://github.com/queelius/AlgoTree/issues",
},
python_requires=">=3.6",
extras_require={
'dev': [
'sphinx',
'sphinx-rtd-theme',
'sphinxcontrib-napoleon',
'coverage',
],
},
test_suite="tests",
entry_points={
'console_scripts': [
'jt=bin.jt:main',
],
},
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
],
)