-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (27 loc) · 1010 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('LICENSE') as f:
license = f.read().splitlines()
setuptools.setup(
name="optimal_stopping",
version="2.0.0",
author="C. Herrera, F. Krach, P. Ruyssen, J. Teichmann",
author_email="calypso.herrera@math.ethz.ch, florian.krach@me.com",
description="Code used to run experiments for paper 'Optimal Stopping via "
"Randomized Neural Networks'.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HeKrRuTe/OptStopRandNN",
license=license,
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)