-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
54 lines (47 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
"""setup.py
Created on: May 19, 2017
Authors: Jeroen van der Heijden <[email protected]>
jomido <https://github.com/jomido>
egalpin <https://github.com/egalpin>
Koos Joosten <[email protected]>
Upload to PyPI:
python setup.py sdist
twine upload --repository pypitest dist/aiogcd-X.X.X.tar.gz
twine upload --repository pypi dist/aiogcd-X.X.X.tar.gz
"""
import setuptools
from distutils.core import setup, Extension
VERSION = '0.12.1'
install_requires = [
'aiohttp>=2',
'PyJWT>=1',
'cryptography>=1',
'asyncio_extras>=1'
]
setup(
name='aiogcd',
packages=[
'aiogcd',
'aiogcd.connector',
'aiogcd.orm',
'aiogcd.orm.properties'],
version=VERSION,
description='Async Google Cloud Datastore API',
author='Jeroen van der Heijden',
author_email='[email protected]',
url='https://github.com/transceptor-technology/aiogcd',
download_url='https://'
'github.com/transceptor-technology/'
'aiogcd/tarball/{}'.format(VERSION),
keywords=['gcd', 'datastore', 'connector'],
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development'
],
)