forked from darwinai/pl-pdfgeneration
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·30 lines (28 loc) · 1013 Bytes
/
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
from os import path
from setuptools import setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')) as f:
readme = f.read()
setup(
name = 'pdfgeneration',
version = '0.3.0',
description = 'An app that takes in COVID-Net prediction results and generates PDF',
long_description = readme,
author = 'DarwinAI',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pl-pdfgeneration',
packages = ['pdfgeneration'],
install_requires = ['chrisapp'],
test_suite = 'nose.collector',
tests_require = ['nose'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.8',
package_data = {
'pdfgeneration': ['template/*', 'template/assets/*']
},
entry_points = {
'console_scripts': [
'pdfgeneration = pdfgeneration.__main__:main'
]
}
)