-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (39 loc) · 2.02 KB
/
setup.py
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
30
31
32
33
34
35
36
37
38
39
40
41
42
# JT: Note that this seems to be required for pip installation,
# even though some of it duplicates information in pyproject.toml
# If there is a way to avoid requiring this duplication, I have not figured it out yet
from distutils.core import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
'''
setuptools.setup(
name="open-optical-gating", # Replace with your own username
version="2.0.0b",
author="Alex Drysdale, Patrick Cameron, Jonathan Taylor and Chas Nelson",
author_email="",
description="Open-source prospective and adaptive optical gating for 3D fluorescence microscopy of beating hearts",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Glasgow-ICG/open-optical-gating/",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)
'''
setup(
name="open-optical-gating", # Replace with your own username
version="2.0.0b",
author="Alex Drysdale, Patrick Cameron, Jonathan Taylor and Chas Nelson",
description="Open-source prospective and adaptive optical gating for 3D fluorescence microscopy of beating hearts",
long_description=long_description,
url="https://github.com/Glasgow-ICG/open-optical-gating/",
packages=['open_optical_gating', 'open_optical_gating.cli'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)