Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bliss
python-handel
Commits
053342f7
Commit
053342f7
authored
Jul 26, 2017
by
Vincent Michel
Browse files
Add setup files
parent
61904bd5
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
053342f7
...
...
@@ -24,7 +24,6 @@ var/
.installed.cfg
*.egg
*.eggs
*.cfg
MANIFEST
# Installer logs
...
...
README.md
0 → 100644
View file @
053342f7
python-handel
=============
A python binding for the
[
handel
](
http://support.xia.com/default.asp?W381
)
library.
setup.cfg
0 → 100644
View file @
053342f7
[tool:pytest]
addopts = tests --cov handel --cov-report html --cov-report term -v
[aliases]
test=pytest
setup.py
0 → 100644
View file @
053342f7
import
sys
from
setuptools
import
setup
TESTING
=
any
(
x
in
sys
.
argv
for
x
in
[
'test'
,
'pytest'
])
with
open
(
"README.md"
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'handel'
,
version
=
'0.1.0.dev0'
,
packages
=
[
'handel'
],
setup_requires
=
[
'pytest-runner'
,
'pytest'
]
if
TESTING
else
[],
tests_require
=
[
'pytest-cov'
],
description
=
"Python binding for the Handel library"
,
long_description
=
long_description
,
license
=
"GPLv3"
,
author
=
"Vincent Michel"
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment