-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (23 loc) · 850 Bytes
/
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
from setuptools import setup, find_packages
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE/"Readme.md").read_text()
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9+',
'License :: OSI Approved :: MIT License'
]
setup(name='Gsauce-pyds',
version='1.0.0',
description='Some useful and known data structure.',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/GSAUC3/Gsauce-pyds',
author='Rajarshi Banerjee',
author_email='sambaner1050@outlook.com ',
license='MIT',
keywords=['python', 'linked list', 'singly linked list','Binary Search Tree','Binary Tree'],
classifiers=classifiers,
packages=find_packages(),
install_requires=[],
zip_safe=False)