From 589b18d8d529adc5305e52a1624146c397a8d122 Mon Sep 17 00:00:00 2001 From: paireks <47977819+paireks@users.noreply.github.com> Date: Thu, 17 Feb 2022 20:43:19 +0100 Subject: [PATCH] Preparing for setup --- dotbimpy/__init__.py | 1 + {Tests => dotbimpy/tests}/Cubes.bim | 0 {Tests => dotbimpy/tests}/Pyramid.bim | 0 {Tests => dotbimpy/tests}/test_cubes.py | 2 +- {Tests => dotbimpy/tests}/test_pyramid.py | 2 +- setup.cfg | 0 setup.py | 26 +++++++++++++++++++++++ 7 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 dotbimpy/__init__.py rename {Tests => dotbimpy/tests}/Cubes.bim (100%) rename {Tests => dotbimpy/tests}/Pyramid.bim (100%) rename {Tests => dotbimpy/tests}/test_cubes.py (98%) rename {Tests => dotbimpy/tests}/test_pyramid.py (97%) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/dotbimpy/__init__.py b/dotbimpy/__init__.py new file mode 100644 index 0000000..732d529 --- /dev/null +++ b/dotbimpy/__init__.py @@ -0,0 +1 @@ +from dotbimpy.file import * diff --git a/Tests/Cubes.bim b/dotbimpy/tests/Cubes.bim similarity index 100% rename from Tests/Cubes.bim rename to dotbimpy/tests/Cubes.bim diff --git a/Tests/Pyramid.bim b/dotbimpy/tests/Pyramid.bim similarity index 100% rename from Tests/Pyramid.bim rename to dotbimpy/tests/Pyramid.bim diff --git a/Tests/test_cubes.py b/dotbimpy/tests/test_cubes.py similarity index 98% rename from Tests/test_cubes.py rename to dotbimpy/tests/test_cubes.py index c7b5be0..9b8e328 100644 --- a/Tests/test_cubes.py +++ b/dotbimpy/tests/test_cubes.py @@ -1,4 +1,4 @@ -from dotbimpy.file import * +from dotbimpy import * def test_cubes(): diff --git a/Tests/test_pyramid.py b/dotbimpy/tests/test_pyramid.py similarity index 97% rename from Tests/test_pyramid.py rename to dotbimpy/tests/test_pyramid.py index 60c0df8..8290b53 100644 --- a/Tests/test_pyramid.py +++ b/dotbimpy/tests/test_pyramid.py @@ -1,4 +1,4 @@ -from dotbimpy.file import * +from dotbimpy import * def test_pyramid(): diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..af34132 --- /dev/null +++ b/setup.py @@ -0,0 +1,26 @@ +from distutils.core import setup +setup( + name='dotbimpy', + packages=['dotbimpy'], + version='0.0.1', + license='MIT', + description='Python library for dotbim', + author='Wojciech', + author_email='w.radaczynski@gmail.com', + url='https://github.com/paireks/dotbimpy', + download_url='', + keywords=[], + install_requires=[ + 'jsonpickle', + ], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9' + ], +) \ No newline at end of file