-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 1.04 KB
/
setup.py
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
34
35
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# (c) 2020 Mike Lewis
import setuptools
import foursquare
version = str(foursquare.__version__)
setuptools.setup(
name="foursquare",
version=version,
author="Mike Lewis",
author_email="[email protected]",
url="http://github.com/mLewisLogic/foursquare",
description="easy-as-pie foursquare API client",
long_description=open("./README.txt", "r").read(),
download_url="http://github.com/mLewisLogic/foursquare/tarball/master",
classifiers=[
"Development Status :: 5 - Production/Stable",
"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=setuptools.find_packages(),
install_requires=["requests>=2.1", "six"],
license="MIT License",
keywords="foursquare api",
include_package_data=True,
zip_safe=True,
)