forked from lobocv/eventdispatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 785 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
with open(os.path.join('.', 'eventdispatcher', 'version.py')) as version_file:
__version__ = ''
exec(version_file.read())
assert len(__version__) > 0
setup(
name='eventdispatcher',
packages=['eventdispatcher'],
version=__version__,
description="An event dispatcher framework inspired by the Kivy project.",
author="Calvin Lobo",
author_email='calvinvlobo@gmail.com',
url='https://github.com/lobocv/eventdispatcher',
download_url='https://github.com/lobocv/eventdispatcher/tarball/%s' % __version__,
keywords=['event', 'dispatcher', 'dispatching', 'kivy', 'observer', 'framework', 'property', 'properties'],
install_requires=['future',
'numpy'
],
)