-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.43 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
[build-system]
requires = ['setuptools', 'setuptools_scm']
build-backend = 'setuptools.build_meta'
[project]
name = 'ghminer'
description = 'Github mining tool for MSR research'
readme = 'README.rst'
license = {file = 'LICENSE'}
authors = [{name='Justin Zhang', email='[email protected]'}]
dependencies = [
"requests==2.31.0",
"semver==3.0.1",
"PyGithub==2.0.1-preview",
"isodate==0.6.1",
"pandas==2.0.1",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT No Attribution License (MIT-0)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
]
requires-python = '>=3.7'
dynamic = ['version']
[project.scripts]
#ghminer = 'ghminer.commands:main'
[tools.setuptools]
package-dir = {'' = 'src'}
[tools.setuptools.dynamic]
version = {attr = 'ghminer.version.version'}
[tool.setuptools_scm]
version_scheme = 'python-simplified-semver'
local_scheme = 'no-local-version'
[project.urls]
'Homepage' = 'https://github.com/schnell18/ghminer'
[project.optional-dependencies]
dev = ["bumpver", "pip-tools"]
test = [ 'tox' ]
doc = ['sphinx']