-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.89 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]
# Minimum requirements for the build system to execute.
requires = ['setuptools>=61', 'setuptools_scm[toml]>=6.2'] # PEP 508 specifications.
build-backend = 'setuptools.build_meta'
[tool.setuptools.packages.find]
where = ['src'] # list of folders that contain the packages (['.'] by default)
include = ['dryad2dataverse*'] # package names should match these glob patterns (['*'] by default)
exclude = ['tests*'] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.setuptools.dynamic]
version = {attr = 'dryad2dataverse.VERSION'}
dependencies = {file = 'requirements.txt'}
[project]
name = 'dryad2dataverse'
description = 'Utility for copying and syncing data from a Dryad data repository to a Dataverse repository'
readme = 'README.md'
keywords =['Harvard Dataverse', 'Dataverse', 'research data management', 'data repository',
'Dryad', 'datadryad.org', 'dataverse.org']
authors = [{name='Paul Lesack', email='[email protected]'}]
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Utilities']
requires-python = '>=3.6'
dynamic = ['version', 'dependencies']
#dynamic = ['version']
[tools.setuptools]
license-files = ['LICEN[CS]*']
[project.urls]
Homepage = 'https://ubc-library-rc.github.io/dryad2dataverse'
Documentation = 'https://ubc-library-rc.github.io/dryad2dataverse'
Repository = 'https://github.com/ubc-library-rc/dryad2dataverse.git'
Tracker = 'https://github.com/ubc-library-rc/dryad2dataverse/issues'
#changelog = 'https://github.com/me/spam/blob/master/CHANGELOG.md'
[project.scripts]
#This should be restructured one day
dryadd = 'dryad2dataverse.scripts.dryadd:main'