-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 833 Bytes
/
setup.py
File metadata and controls
23 lines (23 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name = 'superstring',
packages = ['superstring'],
version = '0.4',
license='MIT',
description = 'A fast and memory-optimized string library for heavy-text manipulation',
author = 'Wael Boutglay',
author_email = 'btwael@gmail.com',
url = 'https://github.com/btwael/superstring.py',
download_url = 'https://github.com/btwael/superstring.py/archive/superstring.py_0.4.tar.gz',
keywords = ['string', 'rope', 'memory-optimized'],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)