-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (31 loc) · 847 Bytes
/
setup.py
File metadata and controls
executable file
·35 lines (31 loc) · 847 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
33
34
35
#!/usr/bin/env python
VERSION = (1, 0, 1)
from setuptools import setup
from setuptools.command.install import install as _install
class install(_install):
def run(self):
res = _install.run(self)
print '''
Do not forget to enable pycrypto library in your app.yaml:
libraries:
- name: pycrypto
version: latest
'''
return res
setup(
cmdclass={'install': install},
name='GaPi',
version='.'.join(map(str, VERSION)),
description='Google API for Google app engine',
author='Robin Gottfried',
author_email='google@kebet.cz',
url='https://github.com/czervenka/gapi',
packages=['gapi'],
install_requires=[
'pycrypto',
],
scripts=['convert_key.py'],
data_files=[
('tests', ('tests/test_generated_key.pem', 'tests/test_google_bundle.p12'))
],
)