forked from LSSTDESC/surveycodex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.18 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="galcheat",
version="0.1.2",
url="https://github.com/aboucaud/galcheat/",
description="Tiny library of galaxy surveys most useful parameters (with units)",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Alexandre Boucaud",
author_email="aboucaud@apc.in2p3.fr",
packages=["galcheat"],
package_data={"galcheat": ["data/*.yaml"]},
include_package_data=True,
entry_points={"console_scripts": ["galcheat = galcheat.__main__:main"]},
install_requires=["astropy", "pyyaml"],
python_requires=">=3.7",
license="MIT",
project_urls={
"Source": "https://github.com/aboucaud/galcheat/",
"Bug Tracker": "https://github.com/aboucaud/galcheat/issues",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)