-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
25 lines (24 loc) · 976 Bytes
/
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
from setuptools import setup
setup(
name="rednit.py",
version="1.0.0",
license="Apache Software License",
description="comprehensive and feature rich wrapper for the Tinder API",
author="Kaktushose",
author_email="[email protected]",
url="https://github.com/rednit-team/tinder.py",
keywords="tinder tinder-api rest-api api wrapper api-client library framework",
install_requires=["requests"],
long_description_content_type="text/markdown",
long_description=open("./README.md", "rt").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)