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
|
#!/usr/bin/env python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
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(
|
setup(
|
||||||
name='tiramisu_api',
|
version=__version__,
|
||||||
version=tiramisu_api.__version__,
|
author="Tiramisu's team",
|
||||||
packages=find_packages(),
|
author_email='gnunux@gnunux.info',
|
||||||
author="Emmanuel Garette & Tiramisu Team",
|
name=PACKAGE_NAME,
|
||||||
description="A subset of Tiramisu API.",
|
description="a subset of Tiramisu API",
|
||||||
long_description=open('README.md').read(),
|
|
||||||
include_package_data=True,
|
|
||||||
url='https://framagit.org/tiramisu/tiramisu-api-python',
|
url='https://framagit.org/tiramisu/tiramisu-api-python',
|
||||||
|
license='GNU Library or Lesser General Public License (LGPL)',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python :: 3",
|
||||||
"Development Status :: 1 - Planning",
|
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
|
||||||
"License :: LGPLv3",
|
"Operating System :: OS Independent",
|
||||||
"Natural Language :: French",
|
"Natural Language :: English",
|
||||||
"Operating System :: OS Independent",
|
"Natural Language :: French",
|
||||||
"Programming Language :: Python :: 3",
|
|
||||||
"Topic :: Communications",
|
|
||||||
],
|
],
|
||||||
|
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