-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (34 loc) · 1.05 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
"""Setup script for `kozai`."""
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
author='Joseph O\'Brien Antognini',
author_email='joe.antognini@gmail.com',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: Physics',
],
description='Evolve hierarchical triples.',
install_requires=['numpy>=1.18.4', 'scipy>=1.4.1'],
keywords='kozai lidov triple dynamics orbit star',
license='MIT',
long_description=readme(),
name='kozai',
packages=['kozai'],
python_requires='>=3.6',
scripts=[
'scripts/kozai',
'scripts/kozai-test-particle',
'scripts/kozai-ekm',
],
tests_require=['pytest>=5.4.2'],
url='https://github.com/joe-antognini/kozai',
version='0.3.0',
zip_safe=False,
)