-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 774 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='plaza_service',
version='0.0.1post1',
description='Helper to build plaza services.',
author='kenkeiras',
author_email='kenkeiras@codigoparallevar.com',
url='https://gitlab.com/plaza-project/bridges/python-plaza-lib',
license='Apache License 2.0',
packages=['plaza_service'],
scripts=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
],
include_package_data=True,
install_requires = [
'websockets'
],
zip_safe=False)