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

Prepare the repo for opening #56

Merged
merged 11 commits into from
Feb 16, 2018
Next Next commit
Move scripts in bin/
The `embed_test.py`, anf `run_martinize2.py` are now located in the
`bin` directory instead of the root of the repository.

It goes the same for `entry_api.py`. In addition, this last script is
renamed `martinize2`, and get installed in the research PATH by setup.py.
  • Loading branch information
jbarnoud committed Feb 15, 2018
commit 36a8ebf2db3b2030e870a827468fc4e6b6623697
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ def package_files(directory):
paths.append(os.path.join('..', path, filename))
return paths

setup(package_data={'': package_files('martinize2/data'),},
setup_requires=['setuptools>=30.3.0'])
setup(
package_data={'': package_files('martinize2/data'),},
scripts=['bin/martinize2', ],
setup_requires=['setuptools>=30.3.0']
)