-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (25 loc) · 890 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='pytreemap',
packages=setuptools.find_packages(),
version='0.6',
license='gpl-2.0',
description='Python Implementation of Java TreeMap/TreeSet',
author_email='gavinsweden@gmail.com',
url='https://github.com/GavinPHR/pytreemap',
keywords=['python3', 'self-balancing', 'binary-search-tree', 'red-black-tree', 'java', 'treemap', 'treeset'],
install_requires=[
],
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
],
python_requires='>=3.5',
long_description=long_description,
long_description_content_type='text/markdown'
)