-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (42 loc) · 1.22 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
#! /usr/bin/env python
import os
import setuptools
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
setuptools.setup(
name="protomatics",
version="0.8.15",
author="Jason Terry",
author_email="[email protected]",
packages=["protomatics"],
package_data={"protomatics": ["data/*.fits"]},
url="https://github.com/j-p-terry/protomatics",
license="LICENSE.md",
description=("Kinematic analysis of protoplanetary disk data."),
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"astropy",
"bettermoments",
"colorspacious",
"h5py",
"matplotlib",
"numba",
"numpy",
"pandas",
"pytest",
"sarracen",
"scipy",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
readme="README.md",
zip_safe=True,
)