forked from athob/py-ananke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.35 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
40
41
42
43
44
#!/usr/bin/env python
import pathlib
from distutils.core import setup
from src._build_utils import *
from src.constants import NAME, SRC_DIR, PYENBID, PYGALAXIA
from src.__metadata__ import *
ROOT_DIR = pathlib.Path(__file__).parent
long_description = ""
check_submodules(ROOT_DIR)
setup(name=NAME,
version=__version__,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url="https://github.com/athob/py-ananke",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
__status__,
"Environment :: Console",
"Intended Audience :: Science/Research",
__license__,
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Software Development :: Version Control :: Git"
],
python_requires='>=3.7.12',
packages=[NAME],
package_dir={'': SRC_DIR},
install_requires=["numpy", "scipy", "pandas",
f"EnBiD_ananke @ file://{(ROOT_DIR / PYENBID).resolve()}",
f"Galaxia_ananke @ file://{(ROOT_DIR / PYGALAXIA).resolve()}"]
)