-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.18 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.18 KB
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
33
34
35
36
# coding: UTF-8
from distutils.core import setup
from os import path
readme = path.join(path.dirname(__file__), 'README')
if path.exists(readme):
with open(readme) as fd:
long_description = fd.read()
else:
long_description = None
setup(
name = 'ObjectProxy',
version = '0.4-1.0rc2',
license = 'BSD',
platforms = 'any',
url = 'https://github.com/Montegasppa/ObjectProxy',
download_url = 'https://github.com/Montegasppa/ObjectProxy/archive/devel.zip',
py_modules = ['object_proxy', 'object_proxy._lambda_relations'],
author = 'Rodrigo Cacilhας',
author_email = 'batalema@cacilhas.info',
description = 'proxy to objects with lazy import',
long_description = long_description,
install_requires = [],
classifiers = [
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)