-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
42 lines (38 loc) · 1.05 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
from setuptools import setup, find_packages
import acsconv
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
setup(
name='ACSConv',
version=acsconv.__version__,
url='https://github.com/M3DV/ACSConv',
license='Apache-2.0 License',
author='Jiancheng Yang and Xiaoyang Huang',
author_email='[email protected]',
python_requires=">=3.6.0",
description='[IEEE JBHI] Reinventing 2D Convolutions for 3D Images',
long_description=readme(),
install_requires=[
'fire',
'numpy',
'matplotlib',
'pandas',
'tqdm',
'scikit-image',
'scikit-learn',
'scipy',
'tensorboardx',
'torch',
'torchvision'
],
long_description_content_type="text/markdown",
packages=find_packages(),
zip_safe=True,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only"
]
)