forked from DiamondLightSource/ispyb-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.74 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
from __future__ import absolute_import, division, print_function
from setuptools import find_packages, setup
import sys
INSTALL_REQUIRES = ["mysql-connector-python"]
if sys.version_info.major == 2:
INSTALL_REQUIRES.append("enum34")
setup(
name="ispyb",
version="5.5.0",
description="Python package to access ISPyB database",
long_description="This package provides a python interface to ISPyB. It can access the ISPyB database directly or (in future versions) run on top of the official ISPyB webservices API.",
url="https://github.com/DiamondLightSource/ispyb-api",
author="Karl Erik Levik, Markus Gerstel",
author_email="[email protected]",
download_url="https://github.com/DiamondLightSource/ispyb-api/releases",
keywords=["ISPyB", "database"],
packages=find_packages(),
scripts=["bin/dimple2ispyb.py", "bin/mxdatareduction2ispyb.py"],
license="Apache License, Version 2.0",
install_requires=INSTALL_REQUIRES,
setup_requires=["pytest-runner"],
tests_require=["mock", "pytest"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={"libtbx.precommit": ["ispyb = ispyb"]},
project_urls={"Documentation": "https://ispyb.readthedocs.io"},
)