From 9504936005f3f62d1c242840bafe18a4b41659fe Mon Sep 17 00:00:00 2001 From: Philippe Caseiro Date: Thu, 14 Mar 2019 11:04:40 +0100 Subject: [PATCH] Adding setup.py for this project --- MANIFEST.in | 1 + setup.py | 27 +++++++++++++++++++++++++++ tiramisu_json_api/__init__.py | 1 + 3 files changed, 29 insertions(+) create mode 100644 MANIFEST.in create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..ee860f2 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +inclue *.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5f4224c --- /dev/null +++ b/setup.py @@ -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", + ], +) diff --git a/tiramisu_json_api/__init__.py b/tiramisu_json_api/__init__.py index a7cdc8e..eb8cace 100644 --- a/tiramisu_json_api/__init__.py +++ b/tiramisu_json_api/__init__.py @@ -1,4 +1,5 @@ from .api import Config +__version__ = "0.0.1" __all__ = ('Config',)