-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 929 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
30
31
32
33
from setuptools import find_packages, setup
setup(
name="AsteroidPy",
version="0.1",
description="A tool for asteroid observation scheduling and analysis",
url="https://github.com/ziriuz84/asteroidpy",
author="Sirio Negri",
author_email="[email protected]",
license="GPL v3",
packages=find_packages("."),
install_requires=[
"requests",
"bs4",
"configparser",
"astropy",
"httpx",
"astroplan",
"lxml",
"astroquery",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GPL v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
],
py_modules=["configuration", "scheduling", "interface"],
entry_points={
"console_scripts": ["asteroidpy=asteroidpy:main"],
},
)