-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (24 loc) · 865 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
from distutils.core import setup
from eventhandler import __version__, __author__
with open('README.rst') as f:
long_description = f.read()
setup(
name='eventhandler',
version=__version__,
packages=['eventhandler'],
url='https://github.com/davidvicenteranz/eventhandler',
license='MIT License',
author=__author__,
author_email='[email protected]',
description='A simple and effective event handler class, based in callbacks for python 3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
long_description=long_description
)