52 lines
1.6 KiB
Python
52 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup
|
|
import os
|
|
from tiramisu import __version__
|
|
|
|
|
|
ORI_PACKAGE_NAME = 'tiramisu'
|
|
PACKAGE_NAME = os.environ.get('PACKAGE_DST', ORI_PACKAGE_NAME)
|
|
|
|
if PACKAGE_NAME != ORI_PACKAGE_NAME:
|
|
package_dir = {PACKAGE_NAME: ORI_PACKAGE_NAME}
|
|
else:
|
|
package_dir = None
|
|
|
|
setup(
|
|
version=__version__,
|
|
author="Tiramisu's team",
|
|
author_email='gnunux@gnunux.info',
|
|
name=PACKAGE_NAME,
|
|
description='an options controller tool',
|
|
url='https://framagit.org/tiramisu/tiramisu',
|
|
license='GNU Library or Lesser General Public License (LGPL)',
|
|
provides=['tiramisu_api'],
|
|
classifiers=[
|
|
"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="""\
|
|
An options controller tool
|
|
-------------------------------------
|
|
|
|
Due to more and more available options required to set up an operating system,
|
|
compiler options or whatever, it became quite annoying to hand the necessary
|
|
options to where they are actually used and even more annoying to add new
|
|
options. To circumvent these problems the configuration control was
|
|
introduced...
|
|
|
|
Tiramisu is an options handler and an options controller, wich aims at
|
|
producing flexible and fast options access.
|
|
|
|
|
|
This version requires Python 3.5 or later.
|
|
""",
|
|
include_package_data=True,
|
|
package_dir=package_dir,
|
|
packages=[PACKAGE_NAME],
|
|
)
|