forked from lucemia/gcloud-python-orm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
45 lines (37 loc) · 1.12 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
37
38
39
40
41
42
43
44
45
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
REQUIREMENTS = [
'gcloud==0.18.3',
]
setup(
name='gcloudorm',
version='0.18.3',
description='ORM for Google Cloud',
author='lucemia',
author_email='lucemia@gmail.com',
maintainer='Frank Jheng',
maintainer_email='shunyi@tagtoo.org',
long_description=README,
scripts=[],
url='https://github.com/Tagtoo/gcloud-python-orm',
packages=find_packages(),
license='Apache 2.0',
platforms='Posix; MacOS X; Windows',
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet',
]
)