forked from google/microscopeimagequality
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (42 loc) · 1.05 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
import setuptools
setuptools.setup(
entry_points={
"console_scripts": [
"microscopeimagequality=microscopeimagequality.application:command"
]
},
install_requires=[
"click",
"matplotlib",
"nose",
"numpy",
"Pillow",
"scikit-image",
"scipy",
"six",
"tensorflow"
],
test_requires=["pytest"],
name="microscopeimagequality",
package_data={
"microscopeimagequality": [
"data/"
]
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering'],
description="Microscope Image Quality Classification",
url='https://github.com/google/microscopeimagequality',
author='Samuel Yang',
author_email='[email protected]',
license='Apache 2.0',
packages=setuptools.find_packages(
exclude=[
"tests"
]
),
version="0.1.0dev5"
)