-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (49 loc) · 1.62 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# setup.py
from setuptools import setup, find_packages
from IQDMPDF._version import __version__, __author__
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 :: 2 - Pre-Alpha",
"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="IQDMPDF",
version=__version__,
include_package_data=True,
python_requires=">3.5",
packages=find_packages(),
description="Scans a directory for IMRT QA results",
author=__author__,
maintainer=__author__,
url="https://github.com/IQDM/IQDM-PDF",
download_url="https://github.com/IQDM/IQDM-PDF.git",
license="MIT License",
keywords=["data mining", "radiation oncology", "IMRT QA"],
classifiers=CLASSIFIERS,
install_requires=requires,
long_description=long_description,
test_suite="tests",
tests_require=[],
entry_points={
"console_scripts": [
"IQDMPDF=IQDMPDF.main:main",
],
},
)