-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·48 lines (41 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import find_packages, setup
import versioneer
install_requires = [
"astropy>=1.2",
"lxml>=2.3",
'iso8601',
'orderedmultidict',
'pytz',
'six',
]
test_requires = [
'pytest>3',
'coverage'
]
extras_require = {
'test': test_requires,
'all': test_requires,
}
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Science/Research",
]
setup(
name="voevent-parse",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(where='src'),
package_dir={'': 'src'},
package_data={'voeventparse': ['fixtures/*.xml']},
description="Convenience routines for parsing and manipulation of "
"VOEvent XML packets.",
author="Tim Staley",
author_email="[email protected]",
url="https://github.com/timstaley/voevent-parse",
install_requires=install_requires,
extras_require=extras_require,
classifiers=classifiers
)