-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.26 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
#
# Copyright (c) 2015, Prometheus Research, LLC
#
from setuptools import setup, find_packages
setup(
name='rios.core',
version='0.9.0',
description='Parsing and Validation Library for RIOS Files',
long_description=open('README.rst', 'r').read(),
keywords='rios prismh research instrument assessment standard validation',
author='Prometheus Research, LLC',
author_email='[email protected]',
license='Apache-2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
url='https://github.com/prometheusresearch/rios.core',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=True,
include_package_data=True,
namespace_packages=['rios'],
entry_points={
'console_scripts': [
'rios-validate = rios.core.scripts:validate',
]
},
install_requires=[
'six',
'colander>=1,<2',
'pyyaml',
],
test_suite='nose.collector',
)