-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (37 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
OMERO server external configuration plugin
"""
import setuptools
setuptools.setup(
name="omero-externalconfig",
author="The Open Microscopy Team",
author_email="[email protected]",
description="OMERO server external configuration plugin",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="GPLv2",
url="https://github.com/ome/omero-cli-externalconfig",
packages=["omero_externalconfig", "omero.plugins"],
setup_requires=["setuptools_scm"],
install_requires=["omero-py>=5.6.0"],
extras_require={
"jinja": ["jinja2"],
},
use_scm_version={"write_to": "omero_externalconfig/_version.py"},
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2" " (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
tests_require=["pytest"],
)