This repository was archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.7 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.7 KB
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
# -*- coding: utf-8 -*-
# Copyright (c) 2018-2021 Linh Pham
# wwdtm is relased under the terms of the Apache License 2.0
"""Package setup file"""
import setuptools
setuptools.setup(name="wwdtm",
version="1.2.1.6",
description="Wait Wait... Don't Tell Me! Data Access Library",
long_description=("Provides show, host, scorekeeper, panelist and guest details "
"from an instance of the Wait Wait... Don't Tell Me! Stats Page "
"database"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License 2.0",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
],
url="http://linhpham.org/",
author="Linh Pham",
author_email="dev@wwdt.me",
license="Apache License 2.0",
packages=setuptools.find_packages(exclude=["tests"]),
package_dir={"wwdtm": "wwdtm"},
project_urls={
"Source": "https://github.com/questionlp/libwwdtm/",
},
python_requires=">=3.6",
install_requires=[
"mysql-connector-python>=8.0.25",
"numpy>=1.19.0",
"python-dateutil",
"python-slugify>=4.0.1",
"pytz>=2021.1"
],
include_package_data=True
)