-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.12 KB
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 find_packages, setup
setup(
name='StatOD',
packages=find_packages(),
version='0.1.0',
description='Statistical Orbit Determination Package',
author='John M',
license='MIT',
setup_requires=['pytest-runner',
'sympy >= 1.9',
'numpy <= 1.22',
'scipy',
'sigfig',
'matplotlib',
'numba',
'joblib',
'tqdm',
'colorama',
'sphinx',
"sphinx_rtd_theme",
"sphinx-gallery"],
install_requires=['pytest-runner',
'sympy >= 1.9',
'numpy <= 1.22',
'scipy',
'sigfig',
'matplotlib',
'numba',
'joblib',
'tqdm',
'colorama',
'sphinx',
"sphinx_rtd_theme",
"sphinx-gallery"],
tests_require=['pytest==4.4.1'],
test_suite='tests',
)