Skip to content

Commit

Permalink
Bump to v0.1.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarreras committed Oct 24, 2013
1 parent 91dea1b commit ffa7947
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/usr/bin/env python
"""
Empowering
======
Python library for the Empowering REST API.
:copyright: (c) 2013 by GISCE-TI, S.L., see AUTHORS for more details.
:license: MIT, see LICENSE for more details.
"""
from setuptools import setup, find_packages

tests_require = [
'Flask'
]

install_requires = [
'libsaas',
]

setup(
name='empowering',
version='0.1.0-alpha',
author='GISCE-TI, S.L.',
author_email='[email protected]',
url='http://code.gisce.net/empowering',
description='Python library for the Empowering REST API.',
long_description=__doc__,
license='MIT',
packages=find_packages(exclude=['tests', 'test']),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
extras_require={'test': tests_require},
test_suite='nose.collector',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)

0 comments on commit ffa7947

Please sign in to comment.