-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (28 loc) · 928 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (28 loc) · 928 Bytes
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 setup, find_packages
setup(
name="atspythonutils",
version="0.1.0",
description="An API to make some game utilites for TrekMUSH: Among The Stars available via HTTP",
url="https://github.com/kcphysics/ATSPythonUtils",
author="KCPhysics",
packages=find_packages(exclude=["data"]),
classifiers=[
"Programmin Language :: Python :: 3.6.8",
"Natural Language :: English",
"License :: MIT"
],
entry_points={
"console_scripts": [
"atsono=atspythonutils.atsono:get_ono",
"atsbestroute=atspythonutils.atsflightplan:best_route",
"atspdest=atspythonutils.atsheadings:get_objects_on_line",
"atspdestobj=atspythonutils.atsheadings:get_objects_on_line_from_object"
]
},
zip_safe=False,
install_requires=[
],
package_data = {
"data": ["data/atsdata.json"]
}
)