forked from innolitics/rdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (55 loc) · 1.76 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
54
55
56
57
58
59
"""
A setuptools based setup module.
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
description = 'Regulatory Documentation Manager'
setup(
name='rdm',
version='0.9.2',
description=description,
long_description=description,
url='https://github.com/innolitics/rdm',
author='Innolitics, LLC',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'Topic :: Software Development :: Build Tools',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='regulatory documentation medical iec62304 iec82304 iso14971',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['jinja2>=2.7', 'pyyaml', 'gitpython', 'jsonschema'],
extras_require={
'svg': ['svglib', 'reportlab'],
'github': ['pygithub'],
'dev': ['check-manifest', 'sphinx', 'sphinx-autobuild', 'mock'],
'test': ['coverage'],
},
package_data={'rdm': [
'base/*',
'checklists/*',
'init_files/.gitignore',
'init_files/*',
'init_files/data/*',
'init_files/images/*',
'init_files/images/uimockups/*',
'init_files/documents/*',
'hook_files/*'
]},
data_files=[],
entry_points={
'console_scripts': [
'rdm = rdm.main:main'
]
},
)