-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
34 lines (31 loc) · 989 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
33
34
import sys
import os
try: from setuptools import setup
except ImportError: from distutils.core import setup
import versioneer
if sys.version_info[:2] < (2, 7):
raise RuntimeError("Python version >= 2.7 required.")
setup(
name='mkauthlist',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Set of simple tools for working in DES.",
long_description="See README on GitHub: https://github.com/kadrlica/mkauthlist",
url='https://github.com/DarkEnergySurvey/mkauthlist',
author='Alex Drlica-Wagner',
author_email='[email protected]',
license='MIT',
scripts = ['bin/mkauthlist'],
packages = ['mkauthlist'],
install_requires=[
'numpy >= 1.6.1',
],
platforms='any',
keywords='latex des',
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
]
)