forked from emerge-erc/ALminer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
version = {}
with open('alminer/version.py') as v:
exec(v.read(), version)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='alminer',
version=version['__version__'],
author='Aida Ahmadi',
author_email='[email protected]',
description='ALminer: ALMA archive mining and visualization toolkit',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=['alminer']),
url='https://github.com/emerge-erc/ALminer',
project_urls={
"Bug Tracker": "https://github.com/emerge-erc/ALminer/issues"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
license='MIT',
install_requires=['numpy>=1.15', 'pandas>1.0', 'matplotlib>=3.3.0', 'pyvo==1.2.1',
'astropy>=3.1.2', 'astroquery>=0.4.2'],
python_requires='>=3.6'
)