-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (27 loc) · 916 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
from setuptools import setup
setup(
name='VarEvents',
version='1.0.0',
license='Apache License 2.0',
url='http://automic.us/projects/pyisy',
download_url='https://github.com/automicus/varevents/tarball/1.0.0',
author='Ryan Kraus',
author_email='[email protected]',
description='Python module to create variables that can '
+ 'raise custom events.',
packages=['VarEvents'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[],
keywords=['event'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)