12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- import os
- import setuptools
- _REPO_URL = "https://github.com/fphammerle/freesurfer-surface"
- with open("README.rst", "r") as readme:
- LONG_DESCRIPTION = readme.read()
- setuptools.setup(
- name="freesurfer-surface",
- use_scm_version={
- "write_to": os.path.join("freesurfer_surface", "version.py"),
-
-
- "write_to_template": "import typing\n"
- + "__version__: typing.Optional[str] = '{version}'\n",
- },
- description="Python Library to Read and Write Surface Files"
- " in Freesurfer's TriangularSurface Format",
- long_description=LONG_DESCRIPTION,
- author="Fabian Peter Hammerle",
- author_email="fabian@hammerle.me",
- url=_REPO_URL,
- project_urls={"Changelog": _REPO_URL + "/blob/master/CHANGELOG.md"},
- license="GPLv3+",
- keywords=[
- "brain",
- "freesurfer",
- "mesh",
- "neuroimaging",
- "reader",
- "surface",
- "triangle",
- "vertex",
- ],
- classifiers=[
- "Development Status :: 3 - Alpha",
- "Intended Audience :: Healthcare Industry",
- "Intended Audience :: Science/Research",
-
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Topic :: Scientific/Engineering :: Information Analysis",
- "Topic :: Scientific/Engineering :: Medical Science Apps.",
- "Topic :: Utilities",
- ],
- packages=setuptools.find_packages(),
- entry_points={
- "console_scripts": [
- "freesurfer-annotation-labels = freesurfer_surface.__main__:annotation_labels",
- "unite-freesurfer-surfaces = freesurfer_surface.__main__:unite_surfaces",
- ]
- },
-
- python_requires=">=3.7",
- install_requires=["numpy<2"],
- setup_requires=["setuptools_scm"],
- tests_require=["pytest<5"],
- )
|