This repository was archived by the owner on Oct 9, 2020. It is now read-only.
forked from xia2/screen19
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (55 loc) · 1.94 KB
/
setup.py
File metadata and controls
60 lines (55 loc) · 1.94 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
changelog_header = """
=========
Changelog
=========
"""
with open("CHANGELOG.rst") as changelog_file:
changelog = changelog_file.read()
setup(
author="Diamond Light Source",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
description="Screening program for small-molecule single-crystal X-ray diffraction "
"data",
entry_points={
"console_scripts": [
"i19.screen = screen19.screen:main",
"screen19 = screen19.screen:main",
"i19.stability_fft = screen19.stability_fft:main",
"i19.minimum_exposure = screen19.minimum_exposure:main",
"screen19.minimum_exposure = screen19.minimum_exposure:main",
],
"libtbx.dispatcher.script": [
"i19.screen = i19.screen",
"screen19 = screen19",
"i19.stability_fft = i19.stability_fft",
"i19.minimum_exposure = i19.minimum_exposure",
"screen19.minimum_exposure = screen19.minimum_exposure",
],
"libtbx.precommit": ["screen19 = screen19"],
},
install_requires=['typing;python_version<"3.5"', "procrunner"],
license="BSD license",
long_description="\n\n".join([readme, changelog_header, changelog]),
include_package_data=True,
name="screen19",
packages=find_packages(),
test_suite="tests",
tests_require=["mock>=2.0", "pytest>=4.5"],
url="https://github.com/xia2/screen19",
version="0.211",
zip_safe=False,
)