-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (54 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "pymotifcounter"
version = "2.0.0"
description = "A simple wrapper for graph motif counting algorithms"
readme = "./README.rst"
authors = [{name="Athanasios Anastasiou", email="athanastasiou@gmail.com"}]
keywords= [
"networks",
"graph theory",
"mathematics",
"graphlets",
"motifs",
"graph",
"discrete mathematics",
"math"
]
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.11"
dependencies = [
"pandas",
"networkx",
"pyparsing"
]
[project.optional-dependencies]
test = [
"pytest",
]
# license
[project.urls]
#Homepage = ""
documentation = "https://pymotifcounter.readthedocs.io/en/latest/"
repository = "https://github.com/aanastasiou/pymotifcounter"
#changelog = ""
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools',
]
[tool.setuptools]
packages = ["pymotifcounter"]