-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 853 Bytes
/
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
from setuptools import setup, find_packages
from distutils.util import convert_path
setup(name = "binarycmd",
version = 0.1,
description = "Color-Magnitude Diagram Analysis tools for binary stars",
author = "Dom Rowan",
author_email = "",
url = "https://github.com/dmrowan/binarycmd",
packages = find_packages(include=['binarycmd', 'binarycmd.*']),
package_data = {'binarycmd':['data/*']},
include_package_data = True,
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Astronomy'
],
zip_safe=False,
python_requires=">=3.6",
install_requires=["astropy", "cmasher", "matplotlib", "numpy", "pandas", "scipy"]
)