-
Notifications
You must be signed in to change notification settings - Fork 965
/
setup.py
55 lines (49 loc) · 1.55 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
54
55
import codecs
from setuptools import setup
SCHEDULE_VERSION = "1.2.2"
SCHEDULE_DOWNLOAD_URL = "https://github.com/dbader/schedule/tarball/" + SCHEDULE_VERSION
def read_file(filename):
"""
Read a utf8 encoded text file and return its contents.
"""
with codecs.open(filename, "r", "utf8") as f:
return f.read()
setup(
name="schedule",
packages=["schedule"],
package_data={"schedule": ["py.typed"]},
version=SCHEDULE_VERSION,
description="Job scheduling for humans.",
long_description=read_file("README.rst"),
license="MIT",
author="Daniel Bader",
author_email="mail@dbader.org",
url="https://github.com/dbader/schedule",
download_url=SCHEDULE_DOWNLOAD_URL,
keywords=[
"schedule",
"periodic",
"jobs",
"scheduling",
"clockwork",
"cron",
"scheduler",
"job scheduling",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
],
python_requires=">=3.7",
)