Skip to content

Commit

Permalink
reorganise test data
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Visscher committed May 22, 2018
1 parent b122c17 commit 410b1d0
Show file tree
Hide file tree
Showing 26 changed files with 34 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.linting.pylintEnabled": false
}
10 changes: 9 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ name = "pypi"

[packages]
mdstudio = {path = "../../mdstudio/", editable = true}
local = {path = "./", editable = true}
local = {path = "./", editable = true}

mdstudio = {path = "../../mdstudio/", editable = true}
local = {path = "./", editable = true}
cerise_client = ">=0.2.4"
numpy = "*"
pyparsing = "*"
panedr = ">=0.2"
retrying = ">=1.3.3"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
static:
vendor: mdgroup
component: topology
component: lie_topology
34 changes: 21 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
# package: lie_topology

# package: lie_docking
# file: setup.py
#
# Part of ‘lie_topology’, providing tools for parsing and generating topology files
# Part of ‘lie_docking’, a package providing molecular docking functionality
# for the LIEStudio package.
#
# Copyright © 2016 Koen M. Visscher, Marc van Dijk, VU University Amsterdam, the Netherlands
# Copyright © 2018 K.M.Visscher, VU University Amsterdam, the Netherlands
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -20,30 +21,37 @@
# See the License for the specific language governing permissions and
# limitations under the License.


from setuptools import setup, find_packages

distribution_name = 'lie_topology'

setup(
name=distribution_name,
version='1.0.0',
license='Apache Software License 2.0',
description='LIEStudio component wrapping topology parsers and writers',
version=0.1,
description='MDStudio component wrapping topology parsers and writers',
author='Koen M. Visscher, VU University, Amsterdam, The Netherlands',
author_email='[email protected]',
url='https://github.com/MD-Studio/MDStudio',
keywords='LIEStudio topology molecular force fields',
author_email=['[email protected]'],
url='https://github.com/MD-Studio/lie_topology.git',
license='Apache Software License 2.0',
keywords='MDStudio molecular simulation',
platforms=['Any'],
packages=find_packages(),
package_data={'lie_topology': ['data/*']},
py_modules=[distribution_name],
include_package_data=True,
install_requires=['mdstudio', 'numpy'],
include_package_data=False,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Scientific/Engineering :: Chemistry',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
],
],
scripts=[],
extras_require={
'test': ['coverage']
}
)

0 comments on commit 410b1d0

Please sign in to comment.