forked from broadinstitute/keras-rcnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 835 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
37
38
39
import setuptools
setuptools.setup(
author="Allen Goodman",
author_email="allen.goodman@icloud.com",
extras_require={
"test": [
"codecov",
"mock",
"pytest",
"pytest-cov",
"pytest-pep8",
"pytest-runner"
],
},
install_requires=[
"jsonschema",
"keras",
"keras-resnet",
"scikit-image"
],
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.0.2",
zip_safe=True
)