forked from kiorky/croniter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (57 loc) · 1.94 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
59
60
61
62
# -*- coding: utf-8 -*-
import io
import os
from setuptools import setup, find_packages
def read(*rnames):
return io.open(
os.path.join('.', *rnames), encoding="utf-8"
).read()
install_requires = [
a.strip()
for a in read('requirements/base.txt').splitlines()
if a.strip() and not a.startswith(('#', '-'))
]
long_description = "\n\n".join(
[
read('README.rst'),
read('docs', 'CHANGES.rst'),
]
)
setup(
name='croniter',
version='1.3.5.dev0',
py_modules=['croniter', ],
description=(
'croniter provides iteration for datetime '
'object with cron like format'
),
long_description=long_description,
author="Matsumoto Taichi, kiorky",
author_email='[email protected], [email protected]',
url='http://github.com/kiorky/croniter',
keywords='datetime, iterator, cron',
install_requires=install_requires,
license="MIT License",
python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules"],
packages=find_packages('src', exclude=['tests*', '*.tests*']),
package_dir={'': 'src'},
include_package_data=True,
exclude_package_data={'croniter': ['tests/*']},
)