-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 917 Bytes
/
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
from setuptools import find_packages, setup
with open("README.rst", "r") as readme_file:
long_description = readme_file.read()
setup(
name='routes-18xx',
version='0.9.2',
author="Austin Noto-Moniz",
author_email="[email protected]",
description="Library for caluclating routes in 18xx train games.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/Auzzy/18xx-routes",
packages=find_packages(),
package_data={"routes18xx": ["data/*", "data/*/*"]},
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
python_requires='>=3.6',
entry_points={
"console_scripts": [
"calc-routes = routes18xx.find_best_routes:main"
]
}
)