-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 813 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 813 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
import setuptools
with open('VERSION', 'r') as version_file:
version = version_file.read()
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
with open('requirements.txt', 'r') as requirements_file:
requirements = requirements_file.read().splitlines()
setuptools.setup(
name="pacfish",
version=version,
author="International Photoacoustic Standardisation Consortium (IPASC)",
description="Photoacoustic Converter for Information Sharing (PACFISH)",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD-3-Clause",
packages=setuptools.find_packages(include=["pacfish", "pacfish.*"]),
install_requires=requirements,
python_requires=">=3.7",
url="https://github.com/IPASC/PACFISH/"
)