This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (46 loc) · 1.67 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
from setuptools import setup
from dvhastats._version import __version__, __author__, __email__
with open('requirements.txt') as doc:
requires = [line.strip() for line in doc]
with open('README.rst') as doc:
long_description = doc.read()
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics"]
setup(
name='dvha-stats',
version=__version__,
include_package_data=True,
python_requires='>3.5',
packages=['dvhastats'],
package_dir={'dvhastats': 'dvhastats'},
description='A library of prediction and statistical process control tools',
author=__author__,
author_email=__email__,
maintainer=__author__,
maintainer_email=__email__,
url='https://github.com/cutright/DVHA-Stats',
download_url='https://github.com/cutright/DVHA-Stats/archive/master.zip',
license="MIT License",
keywords=['stats', 'statistical process control', 'control charts'],
classifiers=CLASSIFIERS,
install_requires=requires,
long_description=long_description,
test_suite='tests',
tests_require=[]
)