-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
32 lines (27 loc) · 1004 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
31
32
from pathlib import Path
import setuptools
here = Path(__file__).parent
with open(str(here / 'README.md'), encoding='utf-8') as f:
long_description = f.read()
with open(str(here / 'requirements.txt'), 'r') as f:
install_reqs = f.read().strip()
install_reqs = install_reqs.split("\n")
setuptools.setup(
name='virtual-scanner',
author='imr-framework',
author_email='[email protected]',
description='Virtual Scanner educational tool for MRI',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/imr-framework/virtual-scanner',
version=2.0.0,
packages=setuptools.find_packages(),
install_requires=install_reqs,
license='License :: OSI Approved :: GNU Affero General Public License v3',
include_package_data=True,
entry_points={
'console_scripts': [
'virtualscanner = virtualscanner.coms.coms_ui.coms_server_flask:launch_virtualscanner'
]
},
)