-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('README.md', 'r', encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='sneat', | ||
version='0.0.5', | ||
version='0.0.6', | ||
packages=find_packages(), | ||
package_data={'sneat': ['default_config.ini']}, | ||
install_requires=[ | ||
|
@@ -22,5 +25,18 @@ | |
author='Adrian E. Bratlann', | ||
author_email='[email protected]', | ||
description='Simplified implementation of NEAT (Neuro-Evolution of Augmenting Topologies).', | ||
license='GPLv3' | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/bhark/sNEAT', | ||
license='GPLv3', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
] | ||
) |