-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.7 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.7 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from pywick import __version__ as version, __author__ as author, __description__ as descr
# read the contents of your README file per https://packaging.python.org/guides/making-a-pypi-friendly-readme/
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pywick',
version=version,
description=descr,
long_description=long_description,
long_description_content_type='text/markdown',
author=author,
install_requires=[
'albumentations',
'dill',
'h5py',
'numpy',
'opencv-python-headless',
'pandas',
'pillow',
'prodict',
'pycm',
'pyyaml',
'scipy',
'requests',
'scikit-image',
'setuptools',
'six',
'tabulate',
'torch >= 1.6.0',
'torchvision',
'tqdm',
'yacs',
'wheel'
],
packages=find_packages(),
url='https://github.com/achaiah/pywick',
download_url=f'https://github.com/achaiah/pywick/archive/v{version}.tar.gz',
keywords=['ai', 'artificial intelligence', 'pytorch', 'classification', 'deep learning', 'neural networks', 'semantic-segmentation', 'framework'],
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)