forked from jgillick/python-pause
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (24 loc) · 842 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
from distutils.core import setup
setup(
name='pause',
version='0.2',
license='LICENSE.txt',
author='Jeremy Gillick',
author_email='none@none.com',
packages=['pause', 'pause.tests'],
url='https://github.com/jgillick/python-pause',
description='A timestamp-based sleep function for Python.',
long_description=open('README.rst').read(),
platforms='osx, posix, linux, windows',
keywords='sleep timestamp datetime',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Environment :: Console'
]
)