forked from saezlab/pypath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (34 loc) · 979 Bytes
/
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
[package]
name = "pypath"
summary = """A module for working with molecular interaction networks."""
url = "http://pypath.omnipathdb.org/"
author = "Dénes Türei"
author-email = "[email protected]"
license = "GPLv3"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics"
]
[package.dependencies]
runtime = []
[package.build]
dependencies = [
"setuptools",
"wheel",
"numpy"
]
[build-system]
requires = [
"setuptools",
"wheel",
"numpy"
]