-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
34 lines (28 loc) · 1.04 KB
/
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
32
33
34
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
from awis import __version__, __maintainer__, __email__
# Patch distutils to make sure LICENSE and README
# are in the same directory as the code
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
license_text = open('LICENSE.txt').read()
long_description = open('README.rst').read()
setup(
name = 'python-awis',
version = __version__,
url = 'http://github.com/muhuk/python-awis',
author = __maintainer__,
author_email = __email__,
license = license_text,
packages = ['awis'],
data_files=[('awis', ['LICENSE.txt', 'README.rst'])],
description = 'Python bindings for Alexa Web ' \
'Information Service (AWIS) API',
long_description=long_description,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
]
)