Skip to content

Commit

Permalink
First attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Hoover committed May 14, 2020
1 parent ad3be97 commit ada6f04
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,5 @@ examples/data.xlsx
docs_source/_build/
docs_source/_modules/

.vscode
.vscode
_archive
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include rxnmapper/models/transformers/*
include rxnmapper/models/transformers/albert_heads_8_uspto_all_1310k/*
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Unsupervised attention-guided atom-mapping

## Install
## Installation instructions

### From Conda

### From Pip

Unfortunately, `rdkit` is not supported on pip, which makes this a slightly more involved process.

### From github

```console
conda create -n rxnmapper python=3.6 -y
Expand All @@ -9,7 +17,7 @@ conda install -c rdkit rdkit
pip install git+https://github.ibm.com/PHS/rxnmapper.git
```

## For development
### For development
You can install the environment for local development using the following:

```console
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@
long_description_content_type='text/markdown',
license='MIT',
install_requires=[
'transformers>=2.5.0', 'torch>=1.3.0', 'ramda==0.5.5', 'scipy==1.4.1',
'pandas==1.0.3'
'transformers>=2.5.0', 'torch>=1.3.0', 'scipy==1.4.1'
],
packages=find_packages(),
package_data={
'rxnmapper': ['models/transformers/albert_heads_8_uspto_all_1310k/*']
},
url='https://github.com/rxn4chemistry/rxn-mapper',
url='https://github.com/rxn4chemistry/rxnmapper',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit ada6f04

Please sign in to comment.