-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 893 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
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import fusiontables
setup(
name='fusiontables',
version="0.0.1",
description="Fusion tables API",
author="someone at google",
author_email="[email protected]",
url='http://code.google.com/p/fusion-tables-client-python/',
license='Apache 2.0',
platforms=["any"],
packages=find_packages(exclude=['ez_setup']),
install_requires=[
],
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
long_description=codecs.open('README', "r", "utf-8").read(),
)