-
-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 594 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 594 Bytes
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
import setuptools
long_description = \
"This library implements various network protocols made by Nintendo."
setuptools.setup(
name = "nintendoclients",
version = "4.3.0",
description = "Nintendo network library",
long_description = long_description,
author = "Yannik Marchand",
author_email = "ymarchand@me.com",
url = "https://github.com/kinnay/NintendoClients",
license = "MIT",
packages = [
"nintendo", "nintendo.nex", "nintendo.switch"
],
package_data = {
"nintendo": ["files/config/*", "files/cert/*"]
},
install_requires = [
"anynet ~= 1.1",
"pycryptodome"
]
)