Adding setup.py for this project

This commit is contained in:
Philippe Caseiro 2019-03-14 11:04:40 +01:00
parent aad8157b98
commit 9504936005
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',)