-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 739 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 739 Bytes
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
from setuptools import setup
def get_long_description() -> str:
content = None
with open("README.md", "r") as f:
content = f.read()
return content
setup(
name="orcidpyclient",
version="1.6",
description="A simple wrapper around the ORCID.org API",
long_description=get_long_description(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
url="https://github.com/vdmitriyev/orcidpyclient",
author="vdmitriyev",
license="MIT",
packages=["orcidpyclient"],
install_requires=[
"requests>=2.28.0",
],
)