-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1009 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 1009 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
28
29
30
31
32
33
from setuptools import setup, find_packages
import untappd
version = str(untappd.__version__)
setup(
name='untappd',
version=version,
author='Christopher Betz',
author_email='christopherwilliambetz@gmail.com',
url='https://github.com/cbetz/untappd-python',
description='Untappd wrapper library',
long_description=open('./README.txt', 'r').read(),
download_url='https://github.com/cbetz/untappd-python/tarball/master',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
install_requires=[
'requests',
'future',
],
license='MIT License',
keywords='untappd api',
include_package_data=True,
zip_safe=True,
)