-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
46 lines (45 loc) · 1.33 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
42
43
44
45
46
from setuptools import find_packages, setup
setup(
name="termtrack",
version="0.7.4",
description="Track Earth-orbiting satellites from your terminal",
author="Torsten Rehn",
author_email="[email protected]",
license="GPLv3",
url="https://github.com/trehn/termtrack",
keywords=["terminal", "track", "tracking", "satellite", "orbit", "iss"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
packages=find_packages(),
package_data={
"termtrack": [
"data/earth.jpg",
"data/mars.jpg",
"data/moon.jpg",
"data/ne_110m_land.dbf",
"data/ne_110m_land.shp",
"data/ne_110m_land.shx",
],
},
install_requires=[
"click >= 2.0",
"Pillow >= 2.7.0",
"pyephem >= 3.7.5.0",
"pyshp >= 1.2.1",
"requests >= 2.0.0",
],
entry_points={
'console_scripts': [
"termtrack=termtrack.cli:main",
],
},
)