-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (37 loc) · 1.19 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "qsarify"
version = "0.1.1"
authors = [
{ name = "Stephen Szwiec", email = "[email protected]" },
]
description = "QSARify: A tool for QSAR model development"
license = "GPL-3.0-or-later"
homepage = "https://stephenszwiec.github.io/qsarify/"
readme = "README.md"
keywords = ["QSAR", "machine learning", "cheminformatics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy",
"pandas",
"scikit-learn",
"scipy",
"matplotlib",
]
[project.urls]
repository = "https://github.com/stephenszwiec/qsarify"
issues = "https://github.com/stephenszwiec/qsarify/issues"
homepage = "https://stephenszwiec.github.io/qsarify/"
documentation = "https://stephenszwiec.github.io/qsarify/"