-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (23 loc) · 1.12 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cost2fitness",
version="2.0.7",
author="Demetry Pascal",
author_email="qtckpuhdsa@gmail.com",
maintainer = ['Demetry Pascal'],
description="PyPI package for 1) conversion cost values (less is better) to fitness values (more is better) and vice versa, 2) using fast neural networks for forward propagation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PasaOpasen/cost2fitness",
keywords=[ 'optimization', 'evolutionary algorithms', 'fast', 'easy', 'evolution', 'generator', 'simple', 'converter', 'min2max', 'max2min', 'barplots', 'reinforcement learning', 'neural networks', 'layers'],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=['numpy', 'matplotlib']
)