-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
28 lines (25 loc) · 829 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='gpcharts',
version='1.3.0',
description='Google Charts API wrapper',
long_description=long_description,
url='https://github.com/Dfenestrator/GooPyCharts',
author='Sagnik Ghosh',
license='Apache 2',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache 2 License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
keywords=['api'],
packages=find_packages(),
install_requires=['future==0.16.0']
)