-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
48 lines (42 loc) · 1.12 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
43
44
45
46
47
48
from pathlib import Path
from setuptools import find_packages, setup
version_file_path = Path(__file__).parent / 'wildebeest' / '_version.py'
with open(version_file_path, 'r') as version_file:
exec(version_file.read())
with open('README.md') as r:
readme = r.read()
regular_packages = [
'boto3',
'joblib',
'opencv-contrib-python',
'pandas',
'pillow',
'requests',
'retrying',
'scikit-learn',
'tqdm',
]
dev_packages = [
'black',
'flake8',
'flake8-docstrings',
'flake8-import-order',
'matplotlib',
'pytest',
'pytest-cov',
'responses',
]
setup(
name='wildebeest',
version=__version__,
description='Bulk image processing',
long_description=readme,
packages=find_packages(exclude=('tests')),
install_requires=regular_packages,
extras_require={'dev': regular_packages + dev_packages},
author='Greg Gandenberger',
author_email='gsganden@gmail.com',
url='https://github.com/ShopRunner/wildebeest',
download_url=f'https://github.com/ShopRunner/wildebeest/tarball/{__version__}',
long_description_content_type='text/markdown',
)