- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
16 lines (15 loc) · 420 Bytes
/
Copy pathsetup.py
File metadata and controls
16 lines (15 loc) · 420 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fromdistutils.coreimportsetup
setup(
name='allocine-wrapper',
version='0.3.0',
author='Guillaume Thomas',
author_email='guillaume.thomas642@gmail.com',
packages=['allocine'],
scripts=[],
url='http://pypi.python.org/pypi/python-allocine/',
license='LICENSE.txt',
description='Wrapper of Allocine API',
long_description=open('README.txt').read(),
install_requires=[
],
)