Initial commit and release of doi2dataset
This commit is contained in:
commit
9be53fd2fc
23 changed files with 2482 additions and 0 deletions
46
setup.py
Normal file
46
setup.py
Normal file
|
@ -0,0 +1,46 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
setup(
|
||||
name="doi2dataset",
|
||||
version="1.0",
|
||||
description="A tool to process DOIs and generate metadata for Dataverse.org datasets.",
|
||||
long_description=open("README.md", encoding="utf-8").read() if open("README.md", encoding="utf-8") else "",
|
||||
long_description_content_type="text/markdown",
|
||||
author="Alexander Minges",
|
||||
author_email="alexander.minges@uni-due.de",
|
||||
url="https://github.com/your_username/doi2dataset",
|
||||
packages=find_packages(),
|
||||
install_requires=[
|
||||
"dnspython>=2.7.0,<3.0.0",
|
||||
"requests>=2.32.3,<2.33.0",
|
||||
"PyYAML>=6.0,<7.0",
|
||||
"email_validator>=2.2.0,<3.0.0",
|
||||
"rich>=13.9.4,<14.0.0",
|
||||
"idutils>=1.4.2,<2.0.0"
|
||||
],
|
||||
extras_require={
|
||||
"docs": [
|
||||
"sphinx>=8.2.3,<9.0.0",
|
||||
"sphinx_rtd_theme>=3.0,<4.0"
|
||||
],
|
||||
"dev": [
|
||||
"pytest>=8.3.5,<9.0",
|
||||
"pytest-mock>=3.14.0,4.0",
|
||||
"ruff>=0.11.1,<0.20"
|
||||
]
|
||||
},
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"doi2dataset=doi2dataset:main"
|
||||
]
|
||||
},
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Developers",
|
||||
"Topic :: Software Development :: Build Tools",
|
||||
],
|
||||
python_requires='>=3.10',
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue