Skip to content

Commit 22855c7

Browse files
committed
setup.py
1 parent 217355a commit 22855c7

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

setup.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setup(
7+
name='competitivepython',
8+
version='0.0.1',
9+
description='A collection of algorithms for competitive programming',
10+
author='Shikha Pandey',
11+
author_email='shikha.py36@gmail.com',
12+
long_description_content_type="text/markdown",
13+
long_description=long_description,
14+
url='https://github.com/Shikha-code36/competitivepython',
15+
packages=find_packages(),
16+
install_requires=['logging', 'heapq'],
17+
keywords=['competitive programming algorithm', 'python', 'data-structures', 'algorithms',
18+
'searching-algorithm', 'sorting-algorithm', 'graphs', 'binary-search tree'],
19+
license='MIT',
20+
classifiers=[
21+
'Development Status :: 3 - Alpha',
22+
'Intended Audience :: Developers',
23+
'Topic :: Software Development :: Libraries',
24+
'License :: OSI Approved :: MIT License',
25+
'Programming Language :: Python :: 3',
26+
'Programming Language :: Python :: 3.5',
27+
'Programming Language :: Python :: 3.6',
28+
'Programming Language :: Python :: 3.7',
29+
'Programming Language :: Python :: 3.8',
30+
'Programming Language :: Python :: 3.9',
31+
]
32+
)

0 commit comments

Comments
 (0)