-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (26 loc) · 898 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (26 loc) · 898 Bytes
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
28
29
30
31
32
#!/usr/bin/env python
import os
import setuptools
import patterndict
CLASSIFIERS = [
# TBC
# 'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
]
setuptools.setup(
author='Piotr Kilczuk',
author_email='piotr@tymaszweb.pl',
name='patterndict',
version='.'.join(str(v) for v in patterndict.VERSION),
description='A well tested dict-like objects where keys are regexps or globs.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/centralniak/python-patterndict',
license='MIT License',
classifiers=CLASSIFIERS,
tests_require=open('test_requirements.txt').read(),
zip_safe=False,
test_suite='nose.collector',
)