-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (44 loc) · 1.68 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
__author__ = "Jai Ram Rideout"
__credits__ = ["Jai Ram Rideout", "Jose Clemente"]
__license__ = "BSD"
__version__ = "0.0.1-dev"
__maintainer__ = "Jai Ram Rideout"
__email__ = "[email protected]"
from setuptools import setup
from glob import glob
# classes/classifiers code adapted from pyqi:
# https://github.com/bipy/pyqi/blob/master/setup.py
#
# PyPI's list of classifiers can be found here:
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classes = """
Development Status :: 1 - Planning
License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: Implementation :: CPython
Operating System :: OS Independent
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
long_description = ("metasane (canonically pronounced \"meta sane\") is a "
"lightweight, BSD-licensed, pure-Python tool to validate "
"the sanity of spreadsheet-based metadata.")
setup(name='metasane',
version=__version__,
license=__license__,
description='metasane: a tool to validate metadata sanity',
long_description=long_description,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url='https://github.com/clemente-lab/metasane',
packages=['metasane'],
scripts=glob('scripts/*'),
install_requires=['python-dateutil'],
extras_require={'test': ['nose']},
classifiers=classifiers)