-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
74 lines (66 loc) · 1.81 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
requirements = [
'Click>=8.1',
'Cython>=0.29.0',
'scikit-image>=0.19.3',
'Pillow>=9.0,<10.0',
'numpy>=1.21.0',
'PyYAML>=6.0',
'matplotlib>=3.7.0',
'astropy>=5.2.1,<6',
'apng>=0.3.4',
'scipy>=1.10',
'tensorflow>=2.4',
'skyfield>=1.45',
'sgp4>=2.21',
'poliastro>=0.17.0',
'poppy>=1.0.3',
'diskcache>=5.0.3',
'pydash>=4.9.0',
'asdf>=2.14.3,<3',
'pygc>=1.3.0',
'numba>=0.56.0',
'pooch>=1.6.0',
'czmlpy>=0.9.0',
'tifffile>=2023.4.12',
'imagecodecs>=2023.3.16',
]
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest', ]
setup(
author="Alex Cabello",
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta ',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="Satellite observation and scene simulator.",
entry_points={
'console_scripts': [
'satsim=satsim.cli:main',
],
},
install_requires=requirements,
long_description=readme + '\n\n' + history,
include_package_data=True,
keywords='satsim',
name='satsim',
packages=find_packages(include=['satsim', 'satsim.*']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/ssc-ai/satsim',
version='0.19.3',
zip_safe=False,
)