-
Notifications
You must be signed in to change notification settings - Fork 221
/
setup.py
36 lines (35 loc) · 912 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
import setuptools
setuptools.setup(
author="Allen Goodman",
author_email="[email protected]",
extras_require={
"dev": ["black>=19.10b0", "check-manifest>=0.41", "pre-commit>=2.2.0"],
"test": [
"codecov",
"mock",
"pytest",
"pytest-cov",
"pytest-pep8",
"pytest-runner",
],
},
install_requires=[
"jsonschema>=3.2.0",
"keras>=2.3.1",
"keras-resnet>=0.2.0",
"scikit-image>=0.17.2",
],
license="MIT",
name="keras-rcnn",
package_data={
"keras-rcnn": [
"data/checkpoints/*/*.hdf5",
"data/logs/*/*.csv",
"data/notebooks/*/*.ipynb",
]
},
packages=setuptools.find_packages(exclude=["tests"]),
url="https://github.com/broadinstitute/keras-rcnn",
version="0.1.0",
zip_safe=True,
)