mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-21 23:06:38 +00:00
setup.py: added.
requirements.txt: updated.
This commit is contained in:
parent
cab0478c39
commit
6d12c04349
@ -1,3 +1 @@
|
|||||||
requests==2.22.0
|
.
|
||||||
urllib3==1.25.3
|
|
||||||
wxPython==4.0.6
|
|
||||||
|
22
setup.py
Executable file
22
setup.py
Executable file
@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
#
|
||||||
|
# roar.py -- mIRC art editor for Windows & Linux
|
||||||
|
# Copyright (c) 2018, 2019 Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de>
|
||||||
|
#
|
||||||
|
|
||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
author_email="lucio@lucioillanes.de",
|
||||||
|
author="Lucio Andrés Illanes Albornoz",
|
||||||
|
description="mIRC art editor for Windows & Linux",
|
||||||
|
include_package_data=True,
|
||||||
|
install_requires=("requests==2.22.0", "urllib3==1.25.3", "wxPython==4.0.6"),
|
||||||
|
license="MIT",
|
||||||
|
name="roar",
|
||||||
|
package_data={"": ["assets/*/*", "LICENCE", "README.md"]},
|
||||||
|
packages=(".", "assets", "libcanvas", "libgui", "libroar", "librtl", "libtools"),
|
||||||
|
url="https://github.com/lalbornoz/roar/",
|
||||||
|
version="3.1")
|
||||||
|
|
||||||
|
# vim:expandtab foldmethod=marker sw=4 ts=4 tw=120
|
Loading…
Reference in New Issue
Block a user