from setuptools import setup, find_packages # To use a consistent encoding from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.rst'), encoding='utf-8') as f: long_description = f.read() setup( name = 'pygorithm', version = '0.1.dev2', description = 'A Python algorithms module for learning', long_description = long_description, # The project's main homepage. url='https://github.com/OmkarPathak/pygorithms', # Author details author = 'Omkar Pathak', author_email = 'omkarpathak27@gmail.com', # Choose your license license = 'MIT', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers = [ # Indicate who your project is intended for 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries', # Pick your license as you wish (should match "license" above) 'License :: OSI Approved :: MIT License', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], packages = find_packages() )