From 8347a7c247e05050999f4d67aa98856657412a1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?xavier=20dupr=C3=A9?= Date: Sat, 19 Aug 2017 14:02:28 +0200 Subject: [PATCH] move source for the setup --- .gitignore | 4 ++++ setup.py | 13 +++++++++++++ td1a_unit_test_ci/__init__.py | 0 polynom.py => td1a_unit_test_ci/polynom.py | 0 test_polynom.py => tests/test_polynom.py | 0 5 files changed, 17 insertions(+) create mode 100644 setup.py create mode 100644 td1a_unit_test_ci/__init__.py rename polynom.py => td1a_unit_test_ci/polynom.py (100%) rename test_polynom.py => tests/test_polynom.py (100%) diff --git a/.gitignore b/.gitignore index f9ca1c3..dc0ecfd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ *.pyc coverage.html/* .coverage +dist/* +build/* +*egg-info/* + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a30c6c2 --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +from distutils.core import setup +from setuptools import find_packages + +setup(name='td1a_unit_test_ci', + version='0.1', + description="module très simple pour essayer l'inégration continue", + author='Xavier Dupré', + author_email='xavier.dupre@gmail.com', + url='https://github.com/sdpython/td1a_unit_test_ci', + packages=find_packages(), + ) \ No newline at end of file diff --git a/td1a_unit_test_ci/__init__.py b/td1a_unit_test_ci/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/polynom.py b/td1a_unit_test_ci/polynom.py similarity index 100% rename from polynom.py rename to td1a_unit_test_ci/polynom.py diff --git a/test_polynom.py b/tests/test_polynom.py similarity index 100% rename from test_polynom.py rename to tests/test_polynom.py