-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 932 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
#!/usr/bin/env python3
import setuptools
from os.path import join, dirname
setuptools.setup(
name="objproxies",
version="0.9.5~dev",
description="General purpose proxy and wrapper types",
long_description=open(join(dirname(__file__), 'README.rst')).read(),
url="http://github.com/soulrebel/objproxies",
author="Andrea Ratto",
author_email="andrearatto_liste@yahoo.it",
license="PSF or ZPL",
test_suite='objproxies_tests',
py_modules=['objproxies'],
keywords='proxy pattern lazy wrapper',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
)