forked from yakupadakli/python-unsplash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (32 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="python-unsplash",
version="1.2.6",
description="A Python client for the Unsplash API.",
license="MIT",
author="Yakup Adaklı",
author_email="[email protected]",
url="http://github.com/yakupadakli/python-unsplash.git",
packages=find_packages(exclude=["tests"]),
install_requires=[
"oauthlib>=2.0.1",
"requests>=2.31.0",
"requests-oauthlib>=0.7.0",
"six>=1.12.0",
],
keywords="unsplash library",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
],
zip_safe=True,
)