Skip to content

Commit c2f5ff6

Browse files
committed
Create setup.py
1 parent bac8fae commit c2f5ff6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
with open('README.md') as f:
5+
long_description = f.read()
6+
7+
setup(
8+
name='python-codeforces',
9+
version='0.1.0',
10+
author='Mukundan',
11+
author_email='[email protected]',
12+
description='Codeforces API wrapper for python',
13+
long_description=long_description,
14+
long_description_content_type='text/markdown',
15+
license='MIT',
16+
keywords='codeforces',
17+
url='https://github.com/Mukundan314/python-codeforces',
18+
packages=['codeforces']
19+
)

0 commit comments

Comments
 (0)