-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 951 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 951 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
31
32
33
34
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import setuptools
import smart
from smart.__init__ import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="smart",
version=__version__,
author="Chih-Chun Hsu",
author_email="chh194@ucsd.edu",
packages=setuptools.find_packages(),
url="https://github.com/chihchunhsu/smart",
license="MIT",
description=("The Spectral Modeling Analysis and RV Tool"),
long_description=open("README.md").read(),
package_data={"": ["LICENSE", "AUTHORS.rst"]},
include_package_data=False,
install_requires=["numpy", "scipy", "pandas", "matplotlib", "astropy", "emcee", "corner"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
zip_safe=False,
)