1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-22 22:28:03 +01:00

Go with setup.cfg instead of setup.py.

This commit is contained in:
2022-09-02 18:47:17 +02:00
parent b015e443eb
commit 114984cbee
3 changed files with 41 additions and 44 deletions

View File

@@ -1,16 +0,0 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Run CD32 games using fsuae
"""
from fs_uae_wrapper import wrapper
def main():
"""run wrapper"""
wrapper.run()
if __name__ == "__main__":
main()

39
setup.cfg Normal file
View File

@@ -0,0 +1,39 @@
[metadata]
name = fs-uae-wrapper
summary = Automate archives and state for fs-uae
description_file = README.rst
author = Roman Dobosz
author_email = gryf73@gmail.com
url = https://github.com/gryf/fs-uea-wrapper
license = BSD
keywords = uae, fs-uae, amiga, emulator, wrapper
version = 0.8.1
classifier =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: BSD License
Operating System :: POSIX :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: System :: Emulators
Topic :: Games/Entertainment
[install]
record = install.log
[options.entry_points]
console_scripts =
fs-uae-wrapper = fs_uae_wrapper.wrapper:run
[files]
packages =
fs_uae_wrapper
[bdist_wheel]
universal = 1

View File

@@ -1,31 +1,5 @@
#!/usr/bin/env python
"""
Setup for the fs-uae-wrapper
"""
from setuptools import setup
import setuptools
setup(name='fs-uae-wrapper',
packages=['fs_uae_wrapper'],
version='0.8.1',
description='Automate archives and state for fs-uae',
author='Roman Dobosz',
author_email='gryf73@gmail.com',
url='https://github.com/gryf/fs-uea-wrapper',
download_url='https://github.com/gryf/fs-uae-wrapper/archive/master.zip',
keywords=['uae', 'fs-uae', 'amiga', 'emulator', 'wrapper'],
scripts=['script/fs-uae-wrapper'],
classifiers=['Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: System :: Emulators',
'Topic :: Games/Entertainment'],
long_description=open('README.rst').read(),
options={'test': {'verbose': False,
'coverage': False}})
setuptools.setup()