-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
53 lines (49 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.rst", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("requirements-test.txt") as f:
test_requirements = f.read().splitlines()
test_requirements.remove("-r requirements.txt")
setup(
name="themoviedb",
description="A modern and easy to use API wrapper for The Movie Database (TMDb) API v3 written in Python",
long_description=readme,
author="Leandro César",
author_email="[email protected]",
url="https://github.com/leandcesar/themoviedb",
version="{{VERSION_PLACEHOLDER}}",
license="MIT",
python_requires=">=3.8",
packages=find_packages(include=["themoviedb", "themoviedb.*"]),
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords=[
"tmdb",
"tmdb3",
"aiotmdb",
"aiotmdb3",
"themoviedb",
"themoviedb3",
"movie",
"movies",
"tv",
"tv show",
"tv shows",
],
zip_safe=False,
install_requires=requirements,
tests_require=test_requirements,
test_suite="tests",
)