tiramisu-api-python/setup.py

28 lines
743 B
Python
Raw 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-28 22:49:52 +02:00
import tiramisu_api
2019-03-14 11:04:40 +01:00
setup(
2019-07-28 22:49:52 +02:00
name='tiramisu_api',
version=tiramisu_api.__version__,
2019-03-14 11:04:40 +01:00
packages=find_packages(),
author="Emmanuel Garette & Tiramisu Team",
2019-07-28 22:49:52 +02:00
description="A subset of Tiramisu API.",
2019-03-14 11:04:40 +01:00
long_description=open('README.md').read(),
include_package_data=True,
2019-07-28 22:49:52 +02:00
url='https://framagit.org/tiramisu/tiramisu-api-python',
2019-03-14 11:04:40 +01:00
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: LGPLv3",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications",
],
)