-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (56 loc) · 1.8 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from pathlib import Path
from setuptools import setup, find_packages # type: ignore
here = Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
install_requires = [
"rich",
"click",
"pyparsing",
"sqlalchemy[mypy]",
"importlib_metadata",
]
setup(
name="spacetar",
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Space molecules 🧪 ⚗️ in your terminal 💻 !",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/astrogewgaw/spacetar",
author="Ujjwal Panda",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
],
keywords=(
"cli",
"catalog",
"terminal",
"database",
"astronomy",
"catalogue",
"astrophysics",
"astrochemistry",
"space molecules",
"command line tool",
),
package_dir={"": "src"},
packages=find_packages(where="src"),
install_package_data=True,
python_requires=">=3.5, <4",
install_requires=install_requires,
entry_points={"console_scripts": ["spacetar=spacetar.terminal:main"]},
project_urls={
"Documentation": "https://spacetar.readthedocs.io",
"Source": "https://github.com/astrogewgaw/spacetar",
"Bug Reports": "https://github.com/astrogewgaw/spacetar/issues",
"Discussions": "https://github.com/astrogewgaw/spacetar/discussions",
},
cmd_class={},
zip_safe=False,
)