-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·25 lines (22 loc) · 960 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
#!/usr/bin/env python
import os
import re
from setuptools import setup
# Synchronize version from code.
version = re.findall(r"__version__ = \"(.*?)\"",
open(os.path.join("snfpipe", "__init__.py")).read())[0]
setup(name="snfpipe",
version=version,
description="Tools for running the Nearby Supernova Factory pipeline",
long_description="",
classifiers = ["Development Status :: 4 - Beta",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research"],
packages=["snfpipe"],
url="http://github.com/snfactory/pipeline",
author="Kyle Barbary",
author_email="[email protected]")