This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 1.46 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
readme = readme_file.read()
requirements = [
"dials-data>=2.0.38",
"Jinja2",
"h5py",
"mock>=3.0.5",
"msgpack",
"orderedset",
"procrunner>=1.0.2",
"psutil",
"pytest>=4.5,<5.0",
"pytest-mock",
"pytest-xdist>=1.28.0",
"scikit_learn[alldeps]<0.21",
"scipy",
"six",
"tabulate",
"tqdm==4.23.4",
]
setup_requirements = []
setup(
author="DIALS",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="DIALS Dependencies",
install_requires=requirements,
license="BSD license",
long_description=readme,
long_description_content_type="text/x-rst",
name="dials-dependencies",
packages=find_packages(),
setup_requires=setup_requirements,
url="https://github.com/dials/dials-dependencies",
version="0.9.0",
)