forked from G-Node/python-odml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 692 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 692 Bytes
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
import sys
try:
from setuptools import setup
except ImportError as ex:
from distutils.core import setup
from odml import __version__
packages = [
'odml',
'odml.tools'
]
with open('README.rst') as f:
description_text = f.read()
install_req = ["lxml"]
if sys.version_info < (3, 4):
install_req += ["enum34"]
setup(name='odML',
version=__version__,
description='open metadata Markup Language',
author='Hagen Fritsch',
author_email='fritsch+gnode@in.tum.de',
url='http://www.g-node.org/projects/odml',
packages=packages,
test_suite='test',
install_requires=install_req,
long_description=description_text,
)