Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sdc
importer_test_data
Commits
9509d2e3
Commit
9509d2e3
authored
Feb 25, 2020
by
Carl Schaffer
Browse files
adding setup.py
parent
49c56ed7
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
0 → 100644
View file @
9509d2e3
"""Setup for the sda_kharon package."""
import
setuptools
with
open
(
'README.md'
)
as
f
:
README
=
f
.
read
()
from
importer_test_data
import
__version__
setuptools
.
setup
(
author
=
"Carl Schaffer"
,
author_email
=
"schaffer@leibniz-kis.de"
,
name
=
'importer_test_data'
,
license
=
"MIT"
,
description
=
'Easily accessible and version controlled sample data for KIS instruments.'
,
version
=
__version__
,
long_description
=
README
,
url
=
'https://gitlab.leibniz-kis.de/sdc/importer_test_data'
,
packages
=
setuptools
.
find_packages
(),
python_requires
=
">=3.6"
,
classifiers
=
[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta'
,
'License :: OSI Approved :: MIT License'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 3.6'
,
'Topic :: Software Development :: Libraries'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Intended Audience :: Developers'
,
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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