Skip to content
Snippets Groups Projects
Commit 8422a7b6 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Initial commit

parents
No related branches found
Tags v0.1.0
No related merge requests found
matplotlib
memory_profiler
numpydoc
pillow
pytest
pytest-cov
pytest-flake8
pytest-pylint
pytest-watch
sphinx
sphinx-autoapi
sphinx-gallery>=0.1.12
sphinx_rtd_theme
sphinxcontrib-versioning
yapf>=0.30.0
wheel
setup.py 0 → 100644
#!/usr/bin/env python
# Filename: setup.py
"""
The km3net_testdata setup script.
"""
from setuptools import setup
import sys
def read_stripped_lines(filename):
"""Return a list of stripped lines from a file"""
with open(filename) as fobj:
return [l.strip() for l in fobj.readlines()]
try:
with open("README.rst") as fh:
long_description = fh.read()
except UnicodeDecodeError:
long_description = "KM3NeT TestData"
setup(
name='km3net_testdata',
url='https://git.km3net.de/km3py/km3net_testdata.git',
description='KM3NeT TestData',
long_description=long_description,
author='Tamas Gal',
author_email='tgal@km3net.de',
packages=['km3net_testdata'],
include_package_data=True,
platforms='any',
setup_requires=['setuptools_scm'],
use_scm_version=True,
python_requires='>=3.5',
install_requires=read_stripped_lines("requirements.txt"),
extras_require={"dev": read_stripped_lines("requirements-dev.txt")},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
],
)
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import unittest
from km3net_testdata import testdata
class TestTestData(unittest.TestCase):
def test_access(self):
assert True
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment