Skip to content

Commit

Permalink
Add setup.py for easier installation
Browse files Browse the repository at this point in the history
  • Loading branch information
JayFoxRox committed May 23, 2019
1 parent 7131a37 commit a5c7c77
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ instance) can be added to this.

## How to use it

Depends on PyQt5, available with pip. Then run like:
Install using:

```
pip install PyQt5
python main.py
pip install --user -U git+https://github.com/xqemu/xqemu-manager.git#egg=xqemu-manager
```

Then run `python -m xqemu-manager`
28 changes: 28 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/usr/bin/env python

import setuptools

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

setuptools.setup(
name="XQEMU-Manager",
version="0-dev",
maintainer="XQEMU maintainers",
description="Simple graphical user interface to manage XQEMU",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/xqemu/xqemu-manager",
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Topic :: Games/Entertainment",
"Topic :: System :: Emulators",
),
install_requires=['PyQt5'],
packages=['xqemu-manager'],
package_dir={'xqemu-manager': ''},
package_data={'xqemu-manager': ['*.ui']},
)

0 comments on commit a5c7c77

Please sign in to comment.