Skip to content

Commit e9f45c9

Browse files
committed
improved setup.py with long description, license and other details
1 parent ef900a9 commit e9f45c9

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

setup.py

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,37 @@
11
from distutils.core import setup
22

3+
with open('README.md', 'r') as readme:
4+
long_description = readme.read()
5+
36
setup(
47
name='python-string-utils',
5-
version='0.1.0',
8+
version='0.1.1',
69
description='Utility functions for strings checking and manipulation.',
10+
long_description=long_description,
711
author='Davide Zanotti',
812
author_email='davidezanotti@gmail.com',
13+
license='MIT',
914
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',
1037
)

string_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import random
55

66
# module settings
7-
__version__ = '0.1.0'
7+
__version__ = '0.1.1'
88
__all__ = [
99
'is_url',
1010
'is_email',

0 commit comments

Comments
 (0)