-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·41 lines (38 loc) · 1.25 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
# To use a consistent encoding
from codecs import open
import os
from setuptools import setup
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
long_description = open(readme_file, encoding='utf-8').read()
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
]
setup(
author='Daniel Benamy',
author_email='[email protected]',
classifiers=classifiers,
description='Cron for working on projects that use crontabs.',
long_description=long_description,
name='devcron',
py_modules=['devcron'],
scripts=['devcron.py'],
install_requires=['six'],
tests_require=['mock'],
test_suite='tests',
url='https://bitbucket.org/dbenamy/devcron/',
version='0.4',
entry_points={
'console_scripts': [
'devcron=devcron:main',
],
})