-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (32 loc) · 938 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
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('udebugcli/udebugcli.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="udebugcli",
packages=["udebugcli"],
entry_points={
"console_scripts": ['udebug = udebugcli.udebugcli:main']
},
version=version,
description="Utility CLI for automatically testing solutions of competitive programming online judges.",
long_description=long_descr,
author="Rafael Telles",
author_email="[email protected]",
install_requires=[
"docopt==0.6.2",
"PyInquirer==1.0.2",
"requests==2.19.1",
"requests-futures==0.9.7",
"terminaltables==3.1.0",
"termcolor==1.1.0"
],
url="https://github.com/rafael-telles/udebugcli",
)