|
1 | 1 | from distutils.core import setup
|
2 | 2 |
|
| 3 | +with open('README.md', 'r') as readme: |
| 4 | + long_description = readme.read() |
| 5 | + |
3 | 6 | setup(
|
4 | 7 | name='python-string-utils',
|
5 |
| - version='0.1.0', |
| 8 | + version='0.1.1', |
6 | 9 | description='Utility functions for strings checking and manipulation.',
|
| 10 | + long_description=long_description, |
7 | 11 | author='Davide Zanotti',
|
8 | 12 | author_email='davidezanotti@gmail.com',
|
| 13 | + license='MIT', |
9 | 14 | url='https://github.com/daveoncode/python-string-utils',
|
| 15 | + classifiers=[ |
| 16 | + # How mature is this project? Common values are |
| 17 | + # 3 - Alpha |
| 18 | + # 4 - Beta |
| 19 | + # 5 - Production/Stable |
| 20 | + 'Development Status :: 4 - Beta', |
| 21 | + |
| 22 | + # Indicate who your project is intended for |
| 23 | + 'Intended Audience :: Developers', |
| 24 | + 'Topic :: Software Development :: Libraries', |
| 25 | + |
| 26 | + # Pick your license as you wish (should match "license" above) |
| 27 | + 'License :: OSI Approved :: MIT License', |
| 28 | + |
| 29 | + # Specify the Python versions you support here. In particular, ensure |
| 30 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 31 | + 'Programming Language :: Python :: 2.7', |
| 32 | + 'Programming Language :: Python :: 3.2', |
| 33 | + 'Programming Language :: Python :: 3.3', |
| 34 | + 'Programming Language :: Python :: 3.4', |
| 35 | + ], |
| 36 | + keywords='string str utilities development', |
10 | 37 | )
|
0 commit comments