Skip to content

Commit

Permalink
Merge pull request #16 from leopepe/fix/package-description
Browse files Browse the repository at this point in the history
Add classifiers and better package description
  • Loading branch information
leopepe authored Aug 2, 2021
2 parents 4a45716 + ec4d5d6 commit 359ee2c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ clean-venv:
clean-build:
rm -rf build/ *.egg-info/

clean-all: clean-venv clean-build
clean-dist:
rm -rf dist/

clean-all: clean-venv clean-build clean-dist

clean: clean-all
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# GOAPy
[![Build Status](https://travis-ci.com/leopepe/GOApy.svg?branch=v0.2.1)](https://travis-ci.com/leopepe/GOApy) [![Coverage Status](https://coveralls.io/repos/github/leopepe/GOApy/badge.svg?branch=v0.2.1)](https://coveralls.io/github/leopepe/GOApy?branch=v0.2.1) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/41a49ddaaf54400d9dd3d08f7bb1852a)](https://www.codacy.com/manual/lpepefreitas/GOApy?utm_source=github.com&utm_medium=referral&utm_content=leopepe/GOApy&utm_campaign=Badge_Grade) [![PyPI version](https://badge.fury.io/py/Goap.svg)](https://badge.fury.io/py/Goap) [![Python Formater](https://github.com/leopepe/GOApy/actions/workflows/autopep8.yml/badge.svg?branch=master)](https://github.com/leopepe/GOApy/actions/workflows/autopep8.yml)
[![Build Status](https://travis-ci.com/leopepe/GOApy.svg?branch=master)](https://travis-ci.com/leopepe/GOApy) [![Coverage Status](https://coveralls.io/repos/github/leopepe/GOApy/badge.svg?branch=master)](https://coveralls.io/github/leopepe/GOApy?branch=master) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/41a49ddaaf54400d9dd3d08f7bb1852a)](https://www.codacy.com/manual/lpepefreitas/GOApy?utm_source=github.com&utm_medium=referral&utm_content=leopepe/GOApy&utm_campaign=Badge_Grade) [![PyPI version](https://badge.fury.io/py/Goap.svg)](https://badge.fury.io/py/Goap) [![Python Formater](https://github.com/leopepe/GOApy/actions/workflows/autopep8.yml/badge.svg?branch=master)](https://github.com/leopepe/GOApy/actions/workflows/autopep8.yml)

**Version**: 0.2.1

Expand Down
18 changes: 15 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,28 @@
from setuptools import setup, find_packages
from Goap import name, __version__ as version

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name=name,
version=version,
packages=find_packages(),
url='https://github.com/leopepe/GOApy',
project_urls={
"Bug Tracker": "https://github.com/leopepe/GOApy/issues",
},
license='Simplified BSD License',
author='Leonardo Pêpe',
author='Leonardo Pêpe de Freitas',
author_email='lpepefreitas@gmail.com',
description='Goal-Oriented Action Planning implementation in Python. Inspired by Jeff Orkin GOAP <http://alumni.media.mit.edu/~jorkin/goap.html>',
description='Goal Oriented Action Planning (GOAP) algorithm implemented in Python',
long_description=long_description,
long_description_content_type="text/markdown",
test_suite='tests',
python_requires='>=3.0',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.7',
)

0 comments on commit 359ee2c

Please sign in to comment.