Skip to content

Commit

Permalink
Preparing for setup
Browse files Browse the repository at this point in the history
  • Loading branch information
paireks committed Feb 17, 2022
1 parent 7a773eb commit 589b18d
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 2 deletions.
1 change: 1 addition & 0 deletions dotbimpy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from dotbimpy.file import *
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Tests/test_cubes.py → dotbimpy/tests/test_cubes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dotbimpy.file import *
from dotbimpy import *


def test_cubes():
Expand Down
2 changes: 1 addition & 1 deletion Tests/test_pyramid.py → dotbimpy/tests/test_pyramid.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dotbimpy.file import *
from dotbimpy import *


def test_pyramid():
Expand Down
Empty file added setup.cfg
Empty file.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
],
)

0 comments on commit 589b18d

Please sign in to comment.