-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (41 loc) · 1.44 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
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
requires-python = ">= 3.8"
[project]
name = "fip"
version = "2024.1.1"
requires-python = ">=3.10"
license = {file = "LICENSE", content-type = "text/plain"}
readme = {file = "README.md", content-type = "text/markdown"}
description = "FIP is a Python implementation of the Feature Interrelation Profiling cheminformatic methology."
keywords = ["cheminformatics", "information theory", "co-occurrence"]
authors = [{name = "Ivan Cmelo", email = "[email protected]"}]
maintainers = [{name = "Ivan Cmelo", email = "[email protected]"}]
dependencies = [
"pandas",
"numpy",
"rdkit",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools]
include-package-data = true
[project.urls]
homepage = "https://github.com/cmeloi/fip3"
repository = "https://github.com/cmeloi/fip3"
documentation = "https://cmeloi.github.io/fip3"