-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 823 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
from distutils.core import setup
from pypercube import __version__
setup(
name='pypercube',
version=__version__,
description='A Cube API client in python.',
long_description="An easy way to use Cube's API in python",
author='Steven Buss',
author_email='[email protected]',
url='https://github.com/sbuss/pypercube',
download_url='https://github.com/sbuss/pypercube/'\
'tarball/v%s' % __version__,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
],
packages=[
'pypercube',
],
)