-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 815 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
36
from setuptools import find_namespace_packages, setup
VERSION = '0.0.1'
with open('./requirements.txt', 'r') as f:
install_requires = f.read()
setup(
name='doodle_classification',
version=VERSION,
description='Doodle Classification Server',
author='Yang Yang',
author_email='[email protected]',
packages=find_namespace_packages(include=['doodle_classification/*']),
install_requires=install_requires,
extras_require={
'dev': [
'pre-commit',
'flake8',
'jupyter',
'PyYAML',
'pytest',
'autopep8',
'bump2version',
'pytest-timeout'
],
'test': [
'pre-commit',
'PyYAML',
'pytest',
'pytest-timeout'
]
}
)