forked from TimothyADavis/KinMSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 991 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 991 Bytes
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='kinms',
version='3.0.6',
description='The KinMS (KINematic Molecular Simulation) package can be used to simulate observations of arbitary molecular/atomic cold gas distributions.',
url='https://github.com/TimothyADavis/KinMSpy',
author='Timothy A. Davis',
author_email='DavisT@cardiff.ac.uk',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=['kinms','kinms.examples','kinms.utils'],
install_requires=[
'numpy',
'matplotlib',
'scipy',
'astropy',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
zip_safe=False)