Skip to content
Snippets Groups Projects
Commit 4bd557ab authored by jkerdreu's avatar jkerdreu
Browse files

New setup.py config

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/fork@1417 b32b6428-25c9-4566-ad07-03861ab6144f
parent 95aa05c3
Branches
No related tags found
No related merge requests found
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
VERSION = "0.5"
setup(
name='xaal.lib',
version=VERSION,
license='GPL License',
author='Jerome Kerdreux',
author_email='Jerome.Kerdreux@imt-atlantique.fr',
#url='',
description=('xaal.lib is the official Python stack of xAAL protocol '
'dedicated to home automation systems'),
long_description=long_description,
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['xaal', 'home-automation'],
platforms='any',
packages=["xaal.lib",],
namespace_packages=["xaal"],
include_package_data=True,
install_requires=["ujson>=1.33","pysodium"],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment