forked from videowala/python-unsplash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.32 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
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# coding=utf-8
import uuid
from setuptools import setup, find_packages
# try: # for pip >= 10
# from pip._internal.req import parse_requirements
# except ImportError: # for pip <= 9.0.3
# from pip.req import parse_requirements
# install_requirements = parse_requirements('requirements.txt', session=uuid.uuid1())
# requirements = [str(req.req) for req in install_requirements]
requirements = [
"oauthlib==2.0.1",
"requests",
"requests-oauthlib==0.7.0",
"six==1.10.0"
]
setup(
name="python-unsplash",
version="1.0.0",
description="A Python client for the Unsplash API.",
license="MIT",
author="Yakup Adaklı",
author_email="yakup.adakli@gmail.com",
url="http://github.com/yakupadakli/python-unsplash.git",
packages=find_packages(exclude=["tests"]),
install_requires=requirements,
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
zip_safe=True,
)