-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 856 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = "stringquery",
version = "0.0.1",
author = "Marcin Karkocha",
author_email = "[email protected]",
description = ("Simple interface to make queries in string data. ",
"Something like reversed string format in Python 3.x notation."),
license = "BSD",
keywords = "string query reversed format",
url = "https://github.com/kivio/python-stringquery",
packages=['stringquery'],
test_suite='tests',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Filters",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
)