Merge branch 'develop' into 'develop'

Adding setup.py for this project

See merge request tiramisu/tiramisu-json-api!1
This commit is contained in:
gwen 2019-03-25 14:44:33 +01:00
commit f47cc02d3e
3 changed files with 29 additions and 0 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
inclue *.md

27
setup.py Normal file
View File

@ -0,0 +1,27 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import tiramisu_json_api
setup(
name='tiramisu_json_api',
version=tiramisu_json_api.__version__,
packages=find_packages(),
author="Emmanuel Garette & Tiramisu Team",
description="A subset of Tiramisu API that works remotly with tiramisu-json",
long_description=open('README.md').read(),
include_package_data=True,
url='https://framagit.org/tiramisu/tiramisu-json-api',
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: LGPLv3",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications",
],
)

View File

@ -1,4 +1,5 @@
from .api import Config
__version__ = "0.0.1"
__all__ = ('Config',)