-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.04 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
from setuptools import setup
tests_require = [
'SpreadFlowDelta[tests]',
'coveralls',
'fixtures',
'mock',
'testtools',
]
setup(
name='SpreadFlowXslt',
version='0.0.1',
description='XSLT processor for SpreadFlow metadata extraction and processing engine',
author='Lorenz Schori',
author_email='[email protected]',
url='https://github.com/znerol/spreadflow-xslt',
packages=[
'spreadflow_xslt',
'spreadflow_xslt.test'
],
install_requires=[
'SpreadFlowCore',
'defusedxml',
'lxml'
],
tests_require=tests_require,
extras_require={
'tests': tests_require
},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia'
]
)