-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 1.09 KB
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
from setuptools import setup, find_packages
setup(
name="M-E-GA2",
version="2.0.0-b6",
author="Matt Andrews",
author_email="Matthew.Andrews2024@gmail.com",
description="A Genetic Algorithm framework with Mutable Encoding.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ML-flash/M-E-GA",
packages=find_packages(where="src"), # <== Finds packages inside "src/"
package_dir={"": "src"}, # <== Tells setuptools to use "src/" as the base directory
include_package_data=True,
install_requires=[
"xxhash",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.8",
)