forked from nryoung/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (19 loc) · 753 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
#Read in the README for the long description on PyPI
def long_description():
with open('README.rst', 'r') as f:
readme = unicode(f.read())
return readme
setup(name='algorithms',
version='0.1',
description='module of algorithms for Python',
long_description=long_description(),
url='https://github.com/nryoung/algorithms',
author='Nic Young',
author_email='nryoung@gmail.com',
license='BSD',
packages=['algorithms', 'algorithms.data_structure','algorithms.sorting', 'algorithms.shuffling',
'algorithms.searching', 'algorithms.math', 'algorithms.tests'],
classifiers=[
'Programming Language :: Python :: 2.7',],
zip_safe=False)