-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 928 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
from distutils.core import setup
setup(
name = 'pyStringBuilder',
packages = ['pyStringBuilder'],
version = '0.0.9',
license = 'GNU General Public License v3 (GPLv3)',
description = 'A python implementation of StringBuilder class found on Java and C-Sharp.',
author = 'LMongoose',
url = 'https://github.com/LMongoose/py-stringbuilder',
download_url = 'https://github.com/LMongoose/py-stringbuilder/0.0.1.tar.gz',
keywords = [
'string',
'building',
'append',
'concatenation'
],
python_requires='>=3.6',
install_requires = [],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
]
)