forked from rockstreamguy/deepbrain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 1.21 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
#!/usr/bin/env python
import sys
from setuptools import setup
if sys.version_info < (3, 5):
raise NotImplementedError("Sorry, you need at least Python 3.5 to use tfserve.")
def readme():
with open("README.md") as f:
return f.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
setup(name="deepbrain",
version="0.1",
description="Deep Learning-based tools for processing brain images",
long_description=readme(),
long_description_content_type="text/markdown",
author="Ivan Itzcovich",
author_email="i.itzcovich@gmail.com",
url="http://github.com/iitzco/deepbrain",
keywords="deep-learning machine-learning tensorflow ai",
scripts=["bin/deepbrain-extractor"],
packages=["deepbrain"],
license="MIT",
platforms="any",
install_requires=required, # Automatically download dependencies on requirements.txt
python_requires=">3.5",
classifiers=["Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
include_package_data=True # To include everything in MANIFEST.in
)