From cecc3b4535392ce53e9fcba1d1867b041ce787ec Mon Sep 17 00:00:00 2001 From: Emmanuel Garette Date: Mon, 29 Jul 2019 08:10:53 +0200 Subject: [PATCH] update setup.py --- setup.py | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/setup.py b/setup.py index 1c6a07d..89cfe11 100644 --- a/setup.py +++ b/setup.py @@ -1,27 +1,34 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - from setuptools import setup, find_packages +import os +from tiramisu_api import __version__ -import tiramisu_api + +PACKAGE_NAME = os.environ.get('PACKAGE_DST', 'tiramisu_api') setup( - name='tiramisu_api', - version=tiramisu_api.__version__, - packages=find_packages(), - author="Emmanuel Garette & Tiramisu Team", - description="A subset of Tiramisu API.", - long_description=open('README.md').read(), - include_package_data=True, + version=__version__, + author="Tiramisu's team", + author_email='gnunux@gnunux.info', + name=PACKAGE_NAME, + description="a subset of Tiramisu API", url='https://framagit.org/tiramisu/tiramisu-api-python', - + license='GNU Library or Lesser General Public License (LGPL)', classifiers=[ - "Programming Language :: Python", - "Development Status :: 1 - Planning", - "License :: LGPLv3", - "Natural Language :: French", - "Operating System :: OS Independent", - "Programming Language :: Python :: 3", - "Topic :: Communications", + "Programming Language :: Python :: 3", + "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", + "Operating System :: OS Independent", + "Natural Language :: English", + "Natural Language :: French", ], + long_description="""\ +tiramisu-api-python +------------------- + +A subset of Tiramisu API that work with config.option.dict() structure. +It could be use remotly. +""", + include_package_data=True, + packages=find_packages(include=['tiramisu_api']) )