forked from AceLewis/spintax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 971 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(name='spintax',
version='1.0.3',
description='A Python module for parsing spintax',
long_description='A Python module for parsing spintax, unlike any other module this works with nested spintax and also allows the user to escape the special characters used in its syntax.',
keywords=['spintax', 'spin syntax', 'spintax parser', 'spinning', 'spin'],
url='http://github.com/AceLewis/spintax',
download_url='https://github.com/AceLewis/spintax/archive/master.zip',
author='AceLewis',
license='GPLv3',
packages=['spintax'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Text Processing',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
zip_safe=False)