-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
64 lines (54 loc) · 2.15 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
VERSION = read("VERSION.txt").strip()
DESCRIPTION = "OMERO.openlink app"
AUTHOR = "sukunis"
MAINTAINER = "sukunis"
LICENSE = "GNU Affero General Public License v3.0"
HOMEPAGE = "https://github.com/sukunis/OMERO.openlink"
REQUIREMENTS = ["omero-web>=5.6.0"]
setup(name="omero-openlink",
packages=find_packages(exclude=['ez_setup']),
version=VERSION,
description=DESCRIPTION,
long_description=read('README.rst'),
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: '
'Application Frameworks',
'Topic :: Text Processing :: Markup :: HTML'
], # Get strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
author=AUTHOR,
author_email='sinukesus@gmail.com',
maintainer=MAINTAINER,
license=LICENSE,
url=HOMEPAGE,
download_url="%s/archive/v%s.tar.gz" % (HOMEPAGE, VERSION),
keywords=['OMERO.web', 'plugin','openlink'],
install_requires=['omero-web>=5.6.0'],
python_requires='>=3',
include_package_data=True,
zip_safe=False,
)