-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (49 loc) · 1.35 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
50
51
52
53
#
# Copyright (c) 2012-2014, Prometheus Research, LLC
#
from setuptools import setup, find_packages
setup(
name='rios.converter',
version='0.5.1',
description="RIOS converter website",
long_description=open('README.rst', 'r').read(),
maintainer="Prometheus Research, LLC",
maintainer_email="[email protected]",
license='Apache-2.0',
url="https://github.com/prometheusresearch/rios.converter",
package_dir={'': 'src'},
packages=find_packages('src'),
namespace_packages=['rios'],
install_requires=[
'rex.web==3.7.1',
'rios.core>=0.6.0,<1',
'rios.conversion==0.6.1',
'props.csvtoolkit==0.1.1',
'python-magic==0.4.12',
'simplejson==3.8.2',
'cached-property>=1,<2',
],
extras_require={
'dev': [
'pbbt>=0.1.4,<1',
'coverage>=3.7,<4',
'nose>=1.3,<2',
'nosy>=1.1,<2',
'prospector[with_pyroma]>=0.10,<0.11',
'twine>=1.5,<2',
'wheel>=0.24,<0.25',
'Sphinx>=1.3,<2',
'sphinx-autobuild>=0.5,<0.6',
'tox>=2,<3',
'flake8>=2.5.0,<3',
],
},
test_suite='nose.collector',
rex_init='rios.converter',
rex_static='static',
rex_bundle={
'./www/bundle': [
'webpack:',
],
},
)