This website works better with JavaScript.
Home
Explore
Help
Sign In
forestbelton
/
paircd
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Initial commit
master
Forest Belton
3 years ago
commit
0534731848
6 changed files
with
22 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+0
-0
README.rst
+1
-0
paircd/__init__.py
+15
-0
pyproject.toml
+0
-0
tests/__init__.py
+5
-0
tests/test_paircd.py
+ 1
- 0
.gitignore
View File
@ -0,0 +1 @@
__pycache__/
+ 0
- 0
README.rst
View File
+ 1
- 0
paircd/__init__.py
View File
@ -0,0 +1 @@
__version__
=
'
0.1.0
'
+ 15
- 0
pyproject.toml
View File
@ -0,0 +1,15 @@
[
tool
.
poetry
]
name
=
"paircd"
version
=
"0.1.0"
description
=
""
authors
=
[
"Forest Belton <65484+forestbelton@users.noreply.github.com>"
]
[
tool
.
poetry
.
dependencies
]
python
=
"^3.9"
[
tool
.
poetry
.
dev
-
dependencies
]
pytest
=
"^5.2"
[
build
-
system
]
requires
=
[
"poetry-core>=1.0.0"
]
build
-
backend
=
"poetry.core.masonry.api"
+ 0
- 0
tests/__init__.py
View File
+ 5
- 0
tests/test_paircd.py
View File
@ -0,0 +1,5 @@
from
paircd
import
__version__
def
test_version
(
)
:
assert
__version__
==
'
0.1.0
'
Write
Preview
Loading…
Cancel
Save