|
1 | 1 | # -*- coding: utf-8 -*- |
| 2 | +import pathlib |
2 | 3 | from setuptools import setup |
3 | 4 |
|
4 | 5 | packages = [ |
|
19 | 20 | 'symbols' |
20 | 21 | ] |
21 | 22 |
|
| 23 | +# The directory containing this file |
| 24 | +HERE = pathlib.Path(__file__).parent |
| 25 | + |
| 26 | +# The text of the README file |
| 27 | +README = (HERE / "README.md").read_text() |
| 28 | + |
22 | 29 | package_data = {'': ['*'], 'arch.zx48k.peephole': ['opts/*']} |
23 | 30 |
|
24 | 31 | entry_points = { |
|
30 | 37 |
|
31 | 38 | setup_kwargs = { |
32 | 39 | 'name': 'zxbasic', |
33 | | - 'version': '1.11.1', |
| 40 | + 'version': '1.11.1.post1', |
34 | 41 | 'description': "Boriel's ZX BASIC Compiler", |
35 | | - 'long_description': None, |
| 42 | + 'classifiers': [ |
| 43 | + # How mature is this project? Common values are |
| 44 | + # 3 - Alpha |
| 45 | + # 4 - Beta |
| 46 | + # 5 - Production/Stable |
| 47 | + 'Development Status :: 5 - Production/Stable', |
| 48 | + |
| 49 | + # Indicate who your project is intended for |
| 50 | + 'Intended Audience :: Developers', |
| 51 | + 'Topic :: Software Development :: Build Tools', |
| 52 | + |
| 53 | + # Pick your license as you wish (should match "license" above) |
| 54 | + 'License :: OSI Approved :: GNU Affero General Public License v3', |
| 55 | + |
| 56 | + # Specify the Python versions you support here. In particular, ensure |
| 57 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 58 | + 'Programming Language :: Python :: 3.6', |
| 59 | + 'Programming Language :: Python :: 3.8', |
| 60 | + ], |
| 61 | + 'long_description_content_type': "text/markdown", |
| 62 | + 'long_description': README, |
36 | 63 | 'author': 'Jose Rodriguez', |
37 | 64 | 'author_email': 'boriel@gmail.com', |
38 | 65 | 'maintainer': None, |
39 | 66 | 'maintainer_email': None, |
40 | | - 'url': 'https://github.com/boriel/zxbasic', |
| 67 | + 'url': 'http://zxbasic.net', |
41 | 68 | 'packages': packages, |
42 | 69 | 'package_data': package_data, |
43 | 70 | 'entry_points': entry_points, |
|
0 commit comments