forked from ahawker/crython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 929 Bytes
/
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
__author__ = 'Andrew Hawker <[email protected]>'
import crython
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name=crython.__name__,
version=crython.__version__,
description='Cron scheduling for python functions.',
long_description=open('README.md').read(),
author='Andrew Hawker',
author_email='[email protected]',
url='https://github.com/ahawker/crython',
license=open('LICENSE.md').read(),
package_dir={'crython': 'crython'},
packages=['crython'],
test_suite='tests',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
)
)