-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (24 loc) · 775 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (24 loc) · 775 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
long_description = open('README').read()
setup(
name='untappd',
version="0.1",
py_modules = ['untappd'],
description='A python library for the Untappd.com API',
author='Xavier Santolaria',
author_email='xavier@santolaria.net',
license='BSD License',
url='http://github.com/xsa/pyuntappd/',
long_description=long_description,
platforms=["any"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Web Environment',
],
)