Skip to content

Commit

Permalink
Merge pull request #25 from jrsacher/master
Browse files Browse the repository at this point in the history
modifications to `child_filter.py`
  • Loading branch information
aebrer authored May 24, 2022
2 parents 73a3b2b + 24700a6 commit 6a8afc1
Show file tree
Hide file tree
Showing 4 changed files with 923 additions and 722 deletions.
33 changes: 20 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
from setuptools import setup
from setuptools import find_packages

setup(name='deriver',
description='Deriver: for all your molecule generation needs.',
long_description='A software tool for the generation of novel chemical entities.',
version='2.8.0',
url='https://github.com/cyclica/deriver',
license='All Rights Reserved Cyclica Inc.',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=["selfies==1.0.1", "peewee>=3.9.3", "numpy>=1.16.3",
"crem==0.2.4", "loguru==0.4.1", "pandas>=1.0.*"]
)
setup(
name="deriver",
description="Deriver: for all your molecule generation needs.",
long_description="A software tool for the generation of novel chemical entities.",
version="2.9.0",
url="https://github.com/cyclica/deriver",
license="All Rights Reserved Cyclica Inc.",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=[
"selfies==1.0.1",
"peewee>=3.9.3",
"numpy>=1.16.3",
"crem==0.2.4",
"loguru==0.4.1",
"pandas>=1.0.*",
],
)
Loading

0 comments on commit 6a8afc1

Please sign in to comment.