forked from meetsohail/pexels-api-py
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 662 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pexels-api-py",
version="0.0.4",
author="Sohail Ahmed",
author_email="meetsohail360@gmail.com",
description="Python API package for Pexels.com V1.",
url="https://github.com/meetsohail/pexels-api-py",
keywords='pexels, images, photos, copyright free',
install_requires=['requests'],
setup_requires=['pytest-runner'],
tests_require=['pytest==4.4.1'],
test_suite='tests',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
)