-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 916 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
install_requires = [
"numpy",
"matplotlib",
"scipy",
"astropy"
]
setup(
name='compactobjects',
package_dir={"": "src"},
packages=find_packages(where="src"),
version='0.1.0',
description='A package for studying astrophysical compact objects.',
author='Matteo Tagliazucchi',
author_email="[email protected]",
url="https://github.com/matteotagliazucchi/compactobjects",
license='None',
install_requires=install_requires,
classifiers=['Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.8',
"Operating System :: OS Independent"],
)