|
| 1 | +from setuptools import setup, find_packages |
| 2 | +# To use a consistent encoding |
| 3 | +from codecs import open |
| 4 | +from os import path |
| 5 | + |
| 6 | +here = path.abspath(path.dirname(__file__)) |
| 7 | + |
| 8 | +# Get the long description from the README file |
| 9 | +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
| 10 | + long_description = f.read() |
| 11 | + |
| 12 | +setup( |
| 13 | + name = 'pygorithm', |
| 14 | + version = '0.1.dev2', |
| 15 | + description = 'A Python algorithms module for learning', |
| 16 | + long_description = long_description, |
| 17 | + # The project's main homepage. |
| 18 | + url='https://github.com/OmkarPathak/pygorithms', |
| 19 | + # Author details |
| 20 | + author = 'Omkar Pathak', |
| 21 | + author_email = '[email protected]', |
| 22 | + # Choose your license |
| 23 | + license = 'MIT', |
| 24 | + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 25 | + classifiers = [ |
| 26 | + # Indicate who your project is intended for |
| 27 | + 'Intended Audience :: Developers', |
| 28 | + 'Topic :: Software Development :: Libraries', |
| 29 | + |
| 30 | + # Pick your license as you wish (should match "license" above) |
| 31 | + 'License :: OSI Approved :: MIT License', |
| 32 | + |
| 33 | + # Specify the Python versions you support here. In particular, ensure |
| 34 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 35 | + 'Programming Language :: Python :: 2.7', |
| 36 | + 'Programming Language :: Python :: 3', |
| 37 | + 'Programming Language :: Python :: 3.3', |
| 38 | + 'Programming Language :: Python :: 3.4', |
| 39 | + 'Programming Language :: Python :: 3.5', |
| 40 | + ], |
| 41 | + packages = find_packages() |
| 42 | +) |
0 commit comments