-
Notifications
You must be signed in to change notification settings - Fork 79
/
setup.py
43 lines (40 loc) · 1.48 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
"""setup script"""
from setuptools import setup, find_packages
import os
import glob
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
long_description = f.read()
with open(os.path.join(this_directory, "requirements.txt")) as f:
requirements = f.readlines()
setup(
name="deep-koalarization",
version="0.2.0",
description="Keras/Tensorflow implementation of our paper Grayscale Image Colorization using deep CNN and "
"Inception-ResNet-v2",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/baldassarreFe/deep-koalarization",
author="Federico Baldassare, Diego González Morín, Lucas Rodés-Guirao",
license="GPL-v3",
install_requires=requirements,
extras_require={"gpu": ["tensorflow-gpu==1.3.0"]},
packages=find_packages("src"),
package_dir={"": "src"},
# namespace_packages=['koalarization'],
py_modules=[
os.path.splitext(os.path.basename(path))[0] for path in glob.glob("src/*.py")
],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.6",
],
keywords="Image colorization using Deep Learning CNNs",
project_urls={
"Website": "https://lcsrg.me/deep-koalarization",
"Github": "http://github.com/baldassarreFe/deep-koalarization",
},
python_requires=">=3.5",
)