-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 912 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 912 Bytes
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
from setuptools import setup, find_packages
with open("README.md", encoding="utf8") as readme_file:
readme_txt = readme_file.read()
setup(
name='pygenalgo',
version='1.9.0',
author='Michalis Vrettas, PhD',
author_email='michail.vrettas@gmail.com',
description='Genetic Algorithms toolbox in Python3',
long_description=readme_txt,
long_description_content_type='text/markdown',
url='https://github.com/vrettasm/PyGeneticAlgorithms',
packages=find_packages(exclude=["docs", "tests"]),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: GPL-3.0 License',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
install_requires=[
'numpy',
'joblib',
],
)