-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·38 lines (37 loc) · 1.2 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
from setuptools import setup,find_packages
setup(
name='orbdtools',
version='0.2.2',
description='A set of routines for data processing related to ORBit Determination(ORBD) of space objects',
author='Chunxiao Li',
author_email='[email protected]',
url='https://github.com/lcx366/ORBDTOOLS',
license='MIT',
long_description_content_type='text/markdown',
long_description=open('README.md', 'rb').read().decode('utf-8'),
keywords = ['Arc Matching','Arc Association','Initial OD','Cataloging OD','Precise OD'],
python_requires = '>=3.10',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
],
packages = find_packages(),
include_package_data=True,
install_requires=[
'astropy>=4.3.1',
'skyfield',
'sgp4',
'spacetrack',
'numpy',
'scipy',
'loess',
'wget',
'pandas',
'colorama'
],
)