-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.23 KB
/
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
30
31
32
33
"""Trivial split for strings with multiple character delimiters, quotes and escaped characters"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='tssplit',
version='1.0.8',
py_modules=['tssplit.tssplit'],
url='https://github.com/mezantrop/tssplit',
license='bsd-2-clause',
author='Mikhail Zakharov',
author_email='[email protected]',
description='Trivial split for strings with quotes and escaped characters',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General'
],
keywords=['split', 'parse', 'quote', 'trim', 'strip', 'string', 'delimiter', 'separator'],
packages=find_packages(include=['tssplit']),
package_data={"tssplit": ["py.typed"]},
)