tiramisu-api-python/setup.py

35 lines
1.0 KiB
Python
Raw Permalink Normal View History

2019-03-14 11:04:40 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
2019-07-29 08:10:53 +02:00
import os
from tiramisu_api import __version__
2019-03-14 11:04:40 +01:00
2019-07-29 08:10:53 +02:00
PACKAGE_NAME = os.environ.get('PACKAGE_DST', 'tiramisu_api')
2019-03-14 11:04:40 +01:00
setup(
2019-07-29 08:10:53 +02:00
version=__version__,
author="Tiramisu's team",
author_email='gnunux@gnunux.info',
name=PACKAGE_NAME,
description="a subset of Tiramisu API",
2019-07-28 22:49:52 +02:00
url='https://framagit.org/tiramisu/tiramisu-api-python',
2019-07-29 08:10:53 +02:00
license='GNU Library or Lesser General Public License (LGPL)',
2019-03-14 11:04:40 +01:00
classifiers=[
2019-07-29 08:10:53 +02:00
"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",
2019-03-14 11:04:40 +01:00
],
2019-07-29 08:10:53 +02:00
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'])
2019-03-14 11:04:40 +01:00
)