forked from grp/Wii.py
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (23 loc) · 845 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
# Get the long description from the README file
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(name="Wii.py",
version='0.2',
description="Wii library written in and for Python",
url='https://github.com/DorkmasterFlek/Wii.py',
author="Xuzz, SquidMan, megazig, Matt_P, Omega, The Lemon Man, marcan, Daeken",
author_email="",
maintainer="Dorkmaster Flek",
maintainer_email="dorkmasterflek@gmail.com",
license="GNU GPL v3",
python_requires=">=2.7, >=3.3",
long_description=long_description,
packages=["Wii"],
install_requires=['cryptography', 'Pillow'],
extras_require={
'GUI': ["wxPython"],
},
)