-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 894 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
import setuptools
import io
setuptools.setup(
name='collection-filter',
version='0.5',
description=(
'A small list/dict DSL for field filter ' +
'specific designed for RESTful API partial response.'
),
author='Kudo Chien',
author_email='[email protected]',
url='https://github.com/kudo/python-collection-filter',
license='MIT',
long_description=io.open('README.rst', encoding='utf-8').read(),
packages = ['collection_filter'],
test_suite = 'tests',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)