-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.cfg
48 lines (39 loc) · 1.13 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[metadata]
name = mmpdb
version = 3.1
description = A package to identify matched molecular pairs and use them to predict property changes
author = Andrew Dalke
author_email = [email protected]
maintainer = Christian Kramer
maintainer_email = [email protected]
long_description = file: README.md
url = https://github.com/rdkit/mmpdb
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
Operating System :: Unix
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Chemistry
keywords = matched molecular pair, MMP, cheminformatics
[options]
zip_safe = True
include_package_data = True
packages =
mmpdblib
mmpdblib.cli
install_requires =
click
peewee >= 3.0
scipy
[options.package_data]
mmpdblib = schema.sql, create_index.sql, drop_index.sql, fragment_schema.sql, fragment_create_index.sql
[options.entry_points]
console_scripts =
mmpdb = mmpdblib.cli:main
[bdist_wheel]
universal=1
[pycodestyle]
max-line-length = 120
ignore = E266,E203,W503