-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 1.18 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
from setuptools import find_packages, setup
setup(
name='GravityModels',
packages=find_packages(),
version='0.1.0',
description='A collection of gravity models intended for use by astrodynamicists',
author='John M',
license='MIT',
setup_requires=['numpy == 1.23.0',
'matplotlib',
'numba',
'tqdm',
'trimesh == 3.9.31',
'rtree',
'pooch',
'scipy',
'sphinxcontrib-applehelp==1.0.2',
'sphinx == 5.3.0',
"sphinx_rtd_theme",
],
install_requires=[
'numpy == 1.23.0',
'matplotlib',
'numba',
'tqdm',
'trimesh == 3.9.31',
'rtree',
'pooch',
'scipy',
'sphinxcontrib-applehelp==1.0.2',
'sphinx == 5.3.0',
"sphinx_rtd_theme",
],
tests_require=['pytest==4.4.1'],
test_suite='tests',
)