This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (58 loc) · 1.73 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
def readme():
try:
with open('README.md') as f:
return f.read()
except BaseException:
pass
setup(
name='termicoder',
version='0.3.0',
url='https://github.com/termicoder/termicoder',
author='Divesh Uttamchandani',
author_email='[email protected]',
license='MIT',
description='CLI to view, code & submit problems directly from terminal',
long_description=readme(),
long_description_content_type='text/markdown',
keywords='competitive codechef oj',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Education',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'requests',
'beautifulsoup4',
'click-default-group',
'click-repl',
'click_completion',
'requests_oauthlib',
'pyyaml',
'click-log',
'pyperclip',
'beautifultable',
'Markdown',
'Tomd',
'mdv'
],
entry_points='''
[console_scripts]
termicoder=termicoder.cli:main
[termicoder.judge_plugins]
codechef=termicoder.judges:Codechef
''',
project_urls={
'Bug Reports': 'https://github.com/termicoder/termicoder/issues',
'Say Thanks!': 'https://saythanks.io/to/diveshuttam',
'Source': 'https://github.com/termicoder/termicoder/',
}
)