update setup.py
This commit is contained in:
parent
5722fbfaa8
commit
cecc3b4535
41
setup.py
41
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'])
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue