-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.5 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
#!/usr/bin/env python
import codecs
import os
import setuptools
def read(fname):
file_path = os.path.join(os.path.dirname(__file__), fname)
return codecs.open(file_path, encoding="utf-8").read()
setuptools.setup(
name="cronus",
version="0.0.1",
author="Daniel Edgecombe",
author_email="edgy.edgemond@gmail.com",
maintainer="Daniel Edgecombe",
maintainer_email="edgy.edgemond@gmail.com",
license="Apache Software License 2.0",
url="https://github.com/EdgyEdgemond/cronus",
description="A crontab parser",
long_description=read("README.md"),
packages=setuptools.find_packages(include=("cronus*",)),
python_requires=">=3.6",
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
entry_points={
"console_scripts": [
"cronparse=cronus.cmd:main",
],
},
extras_require={
"dev": (
"flake8",
"flake8-commas",
"flake8-isort",
"flake8-quotes",
"isort>=4.3.15",
),
"test": (
"pytest-cov",
"pytest-random-order",
"pytest-xdist",
),
},
)