-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 691 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 691 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pycronic',
version='0.0.5',
description='A crontab script wrapper written by python',
long_description=readme(),
author='piglei',
url='https://github.com/piglei/pycronic/',
keywords='crontab cronic',
author_email='piglei2007@gmail.com',
license='GPL',
packages=['pycronic'],
install_requires=[
'configobj',
'sender',
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
],
scripts=['pycronic/cronic'],
zip_safe=False)