-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (44 loc) · 1.53 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
# -*- coding: utf-8 -*-
from __future__ import print_function
import sys
try:
from skbuild import setup
except ImportError:
print(
"Please update pip, you need pip 10 or greater,\n"
" or you need to install the PEP 518 requirements in pyproject.toml yourself",
file=sys.stderr,
)
raise
from setuptools import find_packages
__version__ = '0.0.11'
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='confseq',
version=__version__,
author='Steve Howard',
author_email='[email protected]',
url='https://github.com/gostevehoward/confseq',
description='Confidence sequences and uniform boundaries',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages('src'),
package_dir={'': 'src'},
cmake_install_dir="src/confseq",
include_package_data = True,
install_requires=['pybind11>=2.3', 'numpy', 'matplotlib', 'multiprocess',
'scipy', 'pytest', 'pandas'],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Mathematics",
],
)