-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 913 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
import io
from setuptools import find_packages, setup
def long_description():
with io.open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
return readme
setup(name='algorithms',
version='0.1.4',
description='Pythonic Data Structures and Algorithms',
long_description=long_description(),
long_description_content_type="text/markdown",
url='https://github.com/keon/algorithms',
author='Algorithms Team & Contributors',
author_email="kwk236@gmail.com",
license='MIT',
packages=find_packages(exclude=('tests', 'tests.*')),
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
zip_safe=False)