-
Notifications
You must be signed in to change notification settings - Fork 126
/
setup.py
35 lines (30 loc) · 997 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
33
34
35
from setuptools import setup, find_packages
from codecs import open
from os import path
import medicaltorch as mt
here = path.abspath(path.dirname(__file__))
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('test-requirements.txt') as f:
test_requirements = f.read().splitlines()
setup(
name='medicaltorch',
version=mt.__version__,
description='An open-source pytorch medical framework.',
url='https://github.com/perone/medicaltorch',
author='Christian S. Perone',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=requirements,
tests_require=test_requirements,
#entry_points={
#'console_scripts': [
# 'cmdname=medicaltorch.mod:function',
#],
#},
)