Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ authors = ["Jose Rodriguez <boriel@gmail.com>"]
license = "GPL-3.0-or-later"
documentation = "https://zxbasic.readthedocs.io"
repository = "https://github.com/boriel/zxbasic"
homepage = "http://zxbasic.net"
readme = "README.md"

classifiers = [
# How mature is this project? Common values are
Expand All @@ -23,8 +25,8 @@ classifiers = [

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
]

keywords = ['compiler', 'zxspectrum', 'BASIC', 'z80'] # arbitrary keywords
Expand Down
33 changes: 30 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
import pathlib
from setuptools import setup

packages = [
Expand All @@ -19,6 +20,12 @@
'symbols'
]

# The directory containing this file
HERE = pathlib.Path(__file__).parent

# The text of the README file
README = (HERE / "README.md").read_text()

package_data = {'': ['*'], 'arch.zx48k.peephole': ['opts/*']}

entry_points = {
Expand All @@ -30,14 +37,34 @@

setup_kwargs = {
'name': 'zxbasic',
'version': '1.11.1',
'version': '1.11.1.post1',
'description': "Boriel's ZX BASIC Compiler",
'long_description': None,
'classifiers': [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',

# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',

# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU Affero General Public License v3',

# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
],
'long_description_content_type': "text/markdown",
'long_description': README,
'author': 'Jose Rodriguez',
'author_email': 'boriel@gmail.com',
'maintainer': None,
'maintainer_email': None,
'url': 'https://github.com/boriel/zxbasic',
'url': 'http://zxbasic.net',
'packages': packages,
'package_data': package_data,
'entry_points': entry_points,
Expand Down