Skip to content

Commit

Permalink
Clean up project, add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
janhybs committed Nov 24, 2018
1 parent 42fcc07 commit c63160e
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 925 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ install:

# command to run tests
script:
- py.test --cov=ci-hpc tests/
- py.test --cov=cihpc tests/

after_success:
- coveralls
52 changes: 52 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#!/bin/python3
# author: Jan Hybs

import os
import setuptools

__root__ = os.path.dirname(__file__)

with open(os.path.join(__root__, 'README.md'), 'r') as fp:
long_description = fp.read()


try:
long_description = long_description[0:long_description.find('## CI-HPC showcase')].strip()
except:
long_description = long_description.strip()

packages = [
"cihpc",
"cihpc.cfg",
"cihpc.utils",
"cihpc.vcs",
"cihpc.structures",
"cihpc.defaults",
"cihpc.visualisation",
"cihpc.processing",
"cihpc.utils.caching",
"cihpc.utils.files",
"cihpc.vcs.webhooks",
"cihpc.vcs.webhooks.push_hook",
"cihpc.visualisation.jupyter",
"cihpc.visualisation.www",
"cihpc.visualisation.www.rest",
"cihpc.processing.multi_processing",
"cihpc.processing.deamon",
"cihpc.processing.step"
]


setuptools.setup(
name='cihpc',
version='0.1.0',
packages=packages,
url='https://github.com/janhybs/ci-hpc',
license='MIT License',
author='jan-hybs',
author_email='jan.hybs@tul.cz',
long_description=long_description,
long_description_content_type="text/markdown",
description='A framework combining CI and HPC together with a minimalistic set of Python scripts '
'to monitor scalability and performance of the software package'
)
165 changes: 0 additions & 165 deletions src/modules/profilers.py

This file was deleted.

0 comments on commit c63160e

Please sign in to comment.