Skip to content

Commit

Permalink
improve setup.py info
Browse files Browse the repository at this point in the history
  • Loading branch information
hx2A committed Apr 3, 2022
1 parent 3e9e475 commit a8aab79
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions py5_resources/py5_module/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os
from setuptools import setup

with open('README.rst') as f:
with open('README.md') as f:
README = f.read()

VERSION = '0.7.2.dev0'
Expand Down Expand Up @@ -61,10 +61,17 @@
install_requires=INSTALL_REQUIRES,
description='Processing for CPython',
long_description=README,
long_description_content_type='text/x-rst',
long_description_content_type='text/markdown',
url='https://py5.ixora.io/',
author='Jim Schmitz',
author_email='[email protected]',
url='https://github.com/hx2A/py5generator',
author_email='[email protected]',
download_url='https://pypi.org/project/py5',
project_urls={
"Bug Tracker": 'https://github.com/hx2A/py5generator/issues',
"Documentation": 'https://py5.ixora.io/',
"Source Code": 'https://github.com/hx2A/py5',
},
platforms=["Windows", "Linux", "Mac OS-X"],
entry_points={
'console_scripts': [
'run_sketch = py5_tools.tools.run_sketch:main',
Expand All @@ -84,6 +91,7 @@
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Java',
],
)

0 comments on commit a8aab79

Please sign in to comment.