-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 1.28 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
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
setup(
name='python-codeforces',
version='0.2.7',
description='Codeforces API wrapper for python',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7'
],
keywords='codeforces',
url='https://github.com/Mukundan314/python-codeforces',
author='Mukundan',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['docs']),
install_requires=['beautifulsoup4', 'colorama', 'requests'],
extras_requires={'docs': ['sphinx', 'sphinx_rtd_theme']},
entry_points={'console_scripts': ['cf-run = codeforces.cf_run:main']},
python_requires='>=3.6,<4',
project_urls={
"Bug Tracker": "https://github.com/Mukundan314/python-codeforces/issues/",
"Documentation": "https://python-codeforces.readthedocs.io/en/stable/",
"Source": "https://github.com/Mukundan314/python-codeforces"
})