-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (36 loc) · 889 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='gros',
version='0.1.0',
description='General Relativity Orbit Simulator',
url='https://github.com/BjoB/gros',
long_description=long_description,
long_description_content_type="text/markdown",
author='Björn Barschtipan',
author_email='',
license='MIT',
packages=find_packages(where='src'),
package_dir={'': 'src'},
zip_safe=False,
setup_requires=['wheel'],
python_requires='>=3.5',
install_requires=[
'astropy>=4.0',
'colorlog',
'numpy',
'pandas',
'plotly>=4.0',
'scipy',
],
extras_require={
'dev': [
'black',
'pycodestyle',
'pyflakes',
'pytest',
],
},
)