Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Ievgen Vovk
ctapipe_io_magic
Commits
88c9e3a7
Commit
88c9e3a7
authored
Apr 12, 2019
by
Ievgen Vovk
Browse files
Added setup.py.
parent
c4e0fef2
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
0 → 100644
View file @
88c9e3a7
from
setuptools
import
setup
,
find_packages
from
os
import
path
# read the contents of your README file
this_directory
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
this_directory
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'ctapipe_io_magic'
,
packages
=
find_packages
(),
version
=
'0.1'
,
description
=
'ctapipe plugin for reading of the calibrated MAGIC files'
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
install_requires
=
[
'ctapipe'
,
'astropy'
,
'uproot'
,
'numpy'
,
'scipy'
],
tests_require
=
[
'pytest'
],
setup_requires
=
[
'pytest_runner'
],
author
=
'Ievgen Vovk'
,
author_email
=
'Ievgen.Vovk@mpp.mpg.de'
,
license
=
'MIT'
,
)
Write
Preview
Supports
Markdown
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