-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·40 lines (34 loc) · 1.03 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
#!/usr/bin/env python
try:
from setuptools import setup
HAVE_SETUPTOOLS = True
except ImportError:
from distutils.core import setup
HAVE_SETUPTOOLS = False
VERSION = '0.0.1'
setup_kwargs = {
"version": VERSION,
"description": 'A Cyclus data managment service',
"license": 'BSD 3-clause',
"author": 'The ERGS developers',
"author_email": '[email protected]',
"url": 'https://github.com/ergs/fixie-data',
"download_url": "https://github.com/ergs/fixie-data/zipball/" + VERSION,
"classifiers": [
"License :: OSI Approved",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Utilities",
],
"zip_safe": False,
"data_files": [("", ['LICENSE', 'README.rst']),],
}
if HAVE_SETUPTOOLS:
setup_kwargs['install_requires'] = ['fixie']
if __name__ == '__main__':
setup(
name='fixie-data',
packages=['fixie_data'],
long_description=open('README.rst').read(),
**setup_kwargs
)