-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
53 lines (49 loc) · 1.52 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# bumpversion setup.cfg
"""The setup script."""
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
setup(
author="Steven R. Goldman",
author_email="sgoldman@stsci.edu",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
description="The DESK is an SED-fitting python scripts for fitting data from evolved stars",
entry_points={"console_scripts": ["desk = desk.main:main"]},
install_requires=[
"astropy",
"numpy",
"scipy",
"tqdm",
"ipdb",
"matplotlib",
"h5py",
"wheel",
"twine",
"sphinx",
"sphinx_automodapi",
"pytest-cov",
],
license="BSD license",
long_description=readme,
include_package_data=True,
keywords="Dusty-Evolved-Star-Kit",
name="desk",
packages=find_packages(include=["desk"]),
package_data={"project": ["desk/models/*", "desk/put_target_data_here/*"]},
setup_requires=["pytest-runner"],
test_suite="tests",
tests_require=["pytest", "sphinx_automodapi"],
url="https://github.com/s-goldman/Dusty-Evolved-Star-Kit/",
version="1.9.0",
zip_safe=False,
)