forked from masyagin1998/robin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 791 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
#!/usr/bin/python3
import setuptools
with open("README.md", "r") as f:
robin_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="robin",
version="0.1.0",
author="Venkata Kolagotla",
author_email="venkata.kolagotla@gmail.com",
description="A package to perform U-net binarization on doc images",
long_description=robin_description,
url="https://github.com/venkatakolagotla/robin",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
tests_require=[
"pytest",
"pytest-cov"
],
install_requires=required
)