Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganizes the project #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
=====================
molden_modifier 0.1.0
tidymol 0.1.0
=====================

Some tools to modify molden files.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some tools for sorting, comparison and get data from molden files


* Free software: MIT license

Installation
Development
============

Use your package manager or use the following instructions to install it
in a virtual environment::

$ python3 -m venv .env
$ source .env/bin/activate
$ pip install --upgrade pip
$ pip install --upgrade
$ pip install --upgrade pip setuptools wheel
$ pip install -r devel-requirements.txt
$ python setup.py develop
$ pip install -e .

Citation
========

::

@Misc{Loehel2020,
@Misc{Loehel2022,
author = {Juergen Loehel and Alba Vargas-Caamal},
title = {Molden-modifier 1.0},
year = {2020},
url = {https://github.com/jloehel/molden_modifier},
title = {tidymol 1.0},
year = {2022},
url = {https://github.com/jloehel/tidymol},
}
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
ply
numpy
docopt
Cython
molmod
pandas
loguru
click
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@ def requires(filename):

# ------------------------------------------------------
setup(
name='molden_modifier',
name='tidymol',
version='0.1.0',
license='MIT',
description='Helps to modify molden files',
description='Little Chem Helper',
long_description='%s\n%s' % (
re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.rst')),
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))
),
author='Jürgen Löhel',
author_email='[email protected]',
url='https://bitbucket.com/jloehel/molden_modifier',
url='https://github.com/jloehel/tidymol',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
Expand Down Expand Up @@ -85,7 +85,7 @@ def requires(filename):

entry_points={
'console_scripts': [
'molden_modifier = molden_modifier.cli:main',
'tidymol = tidymol.cli:main',
]
},
)
179 changes: 0 additions & 179 deletions src/molden_modifier/cli.py

This file was deleted.

95 changes: 0 additions & 95 deletions src/molden_modifier/commands.py

This file was deleted.

Loading