forked from dbader/schedule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (49 loc) · 1.56 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
56
57
58
"""
Publish a new version:
$ git tag X.Y.Z -m "Release X.Y.Z"
$ git push --tags
$ pip install --upgrade twine wheel
$ python setup.py sdist bdist_wheel --universal
$ twine upload dist/*
"""
import codecs
from setuptools import setup
SCHEDULE_VERSION = '0.6.0-3'
# try making setuptools happy with PEP 440-compliant post version
SCHEDULE_DOWNLOAD_URL = (
'https://github.com/sarnold/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'],
version=SCHEDULE_VERSION,
description='Job scheduling for humans.',
long_description=read_file('README.rst'),
license='MIT',
author='Daniel Bader',
author_email='[email protected]',
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',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Natural Language :: English',
],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)