-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 861 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 861 Bytes
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
# -*- coding: utf-8 -*-
import sys
from codecs import open
from setuptools import setup
if sys.version < '3.8':
print("This version is not supported.")
sys.exit(1)
with open('README.rst') as f:
longd = f'\n\n{f.read()}'
setup(
name='codechefcli',
include_package_data=True,
packages=["codechefcli"],
data_files=[('codechefcli', [])],
entry_points={"console_scripts": ['codechefcli = codechefcli.__main__:main']},
install_requires=['requests_html'],
python_requires='>=3.8',
version='0.5.3',
url='http://www.github.com/sk364/codechef-cli',
keywords="codechefcli codechef cli programming competitive-programming competitive-coding",
license='GNU','MIT',
author='Sachin Kukreja',
author_email='skad5455@gmail.com',
description='CodeChef Command Line Interface',
long_description=longd
)