-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 933 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
if __name__ == "__main__":
setup(
name="pyeas",
version="0.2.0",
author="benedictjones",
description="Implements Evolutionary Algorithms and tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/benedictjones/pyeas",
license="BSD License (BSD-3-Clause)",
packages=find_packages(exclude=['*.examples*', ]),
keywords=['python',
'Differential Evolution',
'DE',
'OpenAI Evolutionary Strategy',
"OpenAI-ES",
"CMAES",
"Page Trend Test"],
install_requires=["numpy", "scipy", "matplotlib", "tqdm"],
extras_requires=["twine"],
)