-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
69 lines (65 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
"""
A setuptools based setup module.
"""
from setuptools import setup, find_packages
from os import path
from rdm.version import __version__
here = path.abspath(path.dirname(__file__))
description = 'Regulatory Documentation Manager'
setup(
name='rdm',
version=__version__,
description=description,
long_description=description,
long_description_content_type='text/x-rst',
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='regulatory documentation medical iec62304 iec82304 iso14971 510k',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['jinja2>=2.7', 'pyyaml', 'gitpython'],
extras_require={
'github': ['pygithub'],
'dev': [
'pytest',
'flake8',
'check-manifest',
'sphinx',
'sphinx-autobuild',
'mock',
'docutils',
'coverage'
]
},
package_data={'rdm': [
'base/*',
'checklists/*',
'init_files/.gitignore',
'init_files/*',
'init_files/data/*',
'init_files/images/*',
'init_files/images/uimockups/*',
'init_files/documents/*',
'init_files/documents/510k/*',
'hook_files/*'
]},
data_files=[],
entry_points={
'console_scripts': [
'rdm = rdm.main:main'
]
},
)