Skip to content

Commit f62f85e

Browse files
committed
create a projects directory
1 parent dbf04ca commit f62f85e

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

projects/skeleton/setup.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# -*- coding: utf-8 -*-
2+
from setuptools import setup, find_packages
3+
4+
setup(
5+
name='skeleton',
6+
version='0.1',
7+
description='',
8+
author='',
9+
author_email='',
10+
packages=find_packages()
11+
)

projects/skeleton/skeleton/__init__.py

Whitespace-only changes.

projects/skeleton/skeleton/tests/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from unittest import TestCase
2+
3+
4+
class TestUnits(TestCase):
5+
6+
def test_units(self):
7+
assert 5 * 5 == 25

0 commit comments

Comments
 (0)