-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·32 lines (28 loc) · 944 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
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# FIXME: test
from distutils.core import setup
desc = open("README.md").read()
with open("requirements.txt") as f:
required = f.readlines()
setup(
name="thresher",
version="0.0.1",
author="David W. Hogg and Daniel Foreman-Mackey",
author_email="[email protected]",
url="http://davidwhogg.github.com/TheThresher",
packages=["thresher"],
scripts=["bin/thresh", "bin/thresh-plot", "bin/lucky"],
install_requires=required,
license="GPLv2",
description="we Don't Throw Away Data (tm).",
long_description=desc,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
package_data={"thresher": ["test/*"]},
)