forked from daveoncode/python-string-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 1016 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open('README.md', 'r') as readme:
long_description = readme.read()
setuptools.setup(
name='python-string-utils',
version='1.0.0',
description='Utility functions for strings validation and manipulation.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Davide Zanotti',
author_email='[email protected]',
license='MIT',
url='https://github.com/daveoncode/python-string-utils',
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
keywords='string str utilities validation compression development',
packages=['string_utils'],
data_files=[('README', ['README.md'])],
python_requires='>=3.5',
setup_requires=['wheel'],
)