-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 942 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name="python-tvmaze",
version="1.0.5",
description="A Python client for the TvMaze API.",
license="MIT",
author="Yakup Adaklı",
author_email="[email protected]",
url="https://github.com/yakupadakli/python-tvmaze",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.8, <4",
install_requires=[
"pytest",
"requests==2.28.2",
"six==1.16.0"
],
keywords="tvmaze python library",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
],
zip_safe=True,
)