-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
47 lines (43 loc) · 1.45 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import sys
this_directory = path.abspath(path.dirname(__file__))
if sys.version_info.major < 3:
from io import open
with open(path.join(this_directory, "README.md"), encoding="utf-8") as readme_md:
long_description = readme_md.read()
extras_require = {
"develop": [
"jupyter",
"matplotlib",
"pyflakes",
"pytest>=3.5.1",
"pytest-cov>=2.5.1",
],
"plots": ["matplotlib", "scikit-image"],
}
extras_require["complete"] = sorted(set(sum(extras_require.values(), [])))
setup(
name="excursion",
version="0.0.1",
description="excursion set estimation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/diana-hep/excursion",
author="Lukas Heinrich",
author_email="[email protected]",
license="Apache",
keywords="bayesian optimization excursion set estimation",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
packages=find_packages(),
include_package_data=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*",
install_requires=["sklearn", "scipy", "click>=6.0", "sklearn", "pyyaml"],
extras_require=extras_require,
entry_points={"console_scripts": ["excursion=excursion.commandline:main"]},
dependency_links=[],
)