Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jantic
GitHub Repository: jantic/deoldify
Path: blob/master/setup.py
781 views
1
from setuptools import setup, find_packages
2
3
4
def get_description():
5
return "Deep Learning library for colorizing and restoring old images and video"
6
7
8
# def get_long_description():
9
# with open("README.md") as f:
10
# return f.read()
11
12
13
def get_requirements():
14
with open("requirements.txt") as f:
15
return f.read().splitlines()
16
17
18
setup(
19
name="DeOldify",
20
version="0.0.1",
21
packages=find_packages(exclude=["tests"]),
22
url="https://github.com/jantic/DeOldify",
23
license="MIT License",
24
description=get_description(),
25
# long_description=get_long_description(),
26
# long_description_content_type="text/markdown",
27
classifiers=[
28
"Development Status :: 4 - Beta",
29
"Framework :: Jupyter",
30
"Intended Audience :: Developers",
31
"Intended Audience :: Science/Research",
32
"License :: OSI Approved :: MIT License",
33
"Programming Language :: Python :: 3.6",
34
"Programming Language :: Python :: 3.7",
35
"Topic :: Scientific/Engineering :: Artificial Intelligence",
36
"Topic :: Software Development :: Libraries :: Python Modules",
37
],
38
install_requires=get_requirements(),
39
python_requires=">=3.6",
40
)
41
42