-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 892 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 892 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.read().splitlines()
setuptools.setup(
name="Pyriod",
version="0.3.2",
author="Keaton Bell",
author_email="keatonbell@utexas.edu",
description="Basic period detection and fitting routines for astronomical time series.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/keatonb/Pyriod",
install_requires=requirements,
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
include_package_data=True,
)