Skip to content

Commit

Permalink
readme etc
Browse files Browse the repository at this point in the history
  • Loading branch information
bhark committed Jun 3, 2024
1 parent 7269d24 commit add52ab
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions setup.py
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=[
Expand All @@ -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',
]
)

0 comments on commit add52ab

Please sign in to comment.