convert newline code to 'LF`
This commit is contained in:
parent
5a5beb5645
commit
37a4cedc4d
@ -1,5 +1,5 @@
|
||||
requests
|
||||
python-dotenv
|
||||
pydantic
|
||||
PyJWT
|
||||
validators
|
||||
requests
|
||||
python-dotenv
|
||||
pydantic
|
||||
PyJWT
|
||||
validators
|
||||
|
92
setup.py
92
setup.py
@ -1,46 +1,46 @@
|
||||
import os
|
||||
from typing import Final
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
BASE_DIR: Final[str] = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
with open(os.path.join(BASE_DIR, "VERSION")) as f:
|
||||
__version__ = f.read().strip()
|
||||
|
||||
with open(os.path.join(BASE_DIR, "requirements.txt")) as f:
|
||||
__requirements__ = f.read().splitlines()
|
||||
|
||||
with open(os.path.join(BASE_DIR, "README.md")) as f:
|
||||
__readme__ = f.read()
|
||||
|
||||
setup(
|
||||
name="mdrsclient",
|
||||
version=__version__,
|
||||
description="A MDRS command-line tool",
|
||||
long_description=__readme__,
|
||||
author="Neuroinformatics Unit, RIKEN CBS",
|
||||
license="MIT",
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Science/Research",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"OSI Approved :: MIT License",
|
||||
"Topic :: Utilities",
|
||||
],
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
"": [
|
||||
os.path.join(BASE_DIR, "README.md"),
|
||||
os.path.join(BASE_DIR, "LICENSE"),
|
||||
os.path.join(BASE_DIR, "VERSION"),
|
||||
os.path.join(BASE_DIR, "requirements.txt"),
|
||||
]
|
||||
},
|
||||
install_requires=__requirements__,
|
||||
entry_points={"console_scripts": ["mdrs=mdrsclient.__main__:main"]},
|
||||
)
|
||||
import os
|
||||
from typing import Final
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
BASE_DIR: Final[str] = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
with open(os.path.join(BASE_DIR, "VERSION")) as f:
|
||||
__version__ = f.read().strip()
|
||||
|
||||
with open(os.path.join(BASE_DIR, "requirements.txt")) as f:
|
||||
__requirements__ = f.read().splitlines()
|
||||
|
||||
with open(os.path.join(BASE_DIR, "README.md")) as f:
|
||||
__readme__ = f.read()
|
||||
|
||||
setup(
|
||||
name="mdrsclient",
|
||||
version=__version__,
|
||||
description="A MDRS command-line tool",
|
||||
long_description=__readme__,
|
||||
author="Neuroinformatics Unit, RIKEN CBS",
|
||||
license="MIT",
|
||||
classifiers=[
|
||||
"Development Status :: 3 - Alpha",
|
||||
"Environment :: Console",
|
||||
"Intended Audience :: Developers",
|
||||
"Intended Audience :: Science/Research",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"OSI Approved :: MIT License",
|
||||
"Topic :: Utilities",
|
||||
],
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
package_data={
|
||||
"": [
|
||||
os.path.join(BASE_DIR, "README.md"),
|
||||
os.path.join(BASE_DIR, "LICENSE"),
|
||||
os.path.join(BASE_DIR, "VERSION"),
|
||||
os.path.join(BASE_DIR, "requirements.txt"),
|
||||
]
|
||||
},
|
||||
install_requires=__requirements__,
|
||||
entry_points={"console_scripts": ["mdrs=mdrsclient.__main__:main"]},
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user