-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (56 loc) · 1.49 KB
/
pyproject.toml
File metadata and controls
60 lines (56 loc) · 1.49 KB
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
[project]
name = 'evalstats'
version = '0.0.1'
authors = [
{ name='Nico Curti', email='nico.curti2@unibo.it' },
]
description = 'Extraction of the main statistics from a series of data'
readme = 'README.md'
requires-python = '>=3.5'
license = {text = 'MIT'}
keywords = [
'statistics',
'exercise',
'software-development',
]
maintainers = [
{ name='Nico Curti', email='nico.curti2@unibo.it' },
]
classifiers = [
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
dependencies = [
'numpy',
]
[project.scripts]
evalstats = "evalstats.__main__:main"
[project.optional-dependencies]
dev = [
'flake8',
'pytest',
'codecov',
'pytest-cov',
]
[project.urls]
'Homepage' = 'https://github.com/Nico-Curti/evalstats'
'Bug Tracker' = 'https://github.com/Nico-Curti/evalstats/issues'
[build-system]
requires = [
'setuptools>=42',
]
build-backend = 'setuptools.build_meta'