diff --git a/requirements.txt b/requirements.txt index 0db30fa..23cb1db 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -requests -python-dotenv -pydantic -PyJWT -validators +requests +python-dotenv +pydantic +PyJWT +validators diff --git a/setup.py b/setup.py index 103ca96..4e144cd 100644 --- a/setup.py +++ b/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"]}, +)