pylevel2/setup.py

24 lines
658 B
Python
Raw Permalink Normal View History

2015-03-14 19:27:27 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pylevel2',
version='1.1',
2015-03-14 19:27:27 +01:00
author='Raphaël Vinot',
author_email='raphael.vinot@gmail.com',
maintainer='Raphaël Vinot',
url='https://github.com/Kaweechelchen/Level2.lu',
description='Python API for Level2.',
long_description=open('README.md').read(),
packages=['pylevel2'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Programming Language :: Python',
'Topic :: Internet',
],
install_requires=['requests'],
)