-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 931 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
28
29
30
31
from setuptools import setup
from pylibrets import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(name = 'pylibrets',
version = __version__,
description = 'RETS client library',
long_description = readme(),
author = 'Fernando Herrera',
author_email = '[email protected]',
url = 'http://github.com/wkdglitch/pylibrets',
keywords = 'rets librets',
license = 'MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages = ['pylibrets'],
install_requires = [
'requests',
],
include_package_data = True,
zip_safe = False)