-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (36 loc) · 1.31 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
from setuptools import setup
with open("README.md", "r") as rdme:
desc = rdme.read()
setup(
name = 'rgbmaker',
version = '0.0.5.9',
url='https://github.com/avialxee/rgbmaker',
author='Avinash Kumar',
author_email='avialxee@gmail.com',
description='A python package which communicates to different astronomical services and fetches fits and numerical data.',
py_modules = ["rgbmaker"],
package_dir={'':'src'},
classifiers=["Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
],
long_description=desc,
long_description_content_type = "text/markdown",
install_requires=["astropy>=4.2.1", "matplotlib>= 3.4.2, <=3.5.3",
"regions", "numpy>= 1.20.3", "astroquery","requests",
"scipy",
],
extras_require = {
"dev" : ["pytest>=3.7",
]
},
entry_points={
"console_scripts": [
"rgbmaker=rgbmaker.cli:cli",
],
},
)