-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (43 loc) · 1.25 KB
/
setup.py
File metadata and controls
54 lines (43 loc) · 1.25 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
import sys
import setuptools
if sys.version_info < (3,6):
sys.exit("sorry, python < 3.6 is not supported")
setuptools.setup(
name = "fcdstools",
version = "0.1.0",
description = "Famicom Disk System disk image manipulation",
long_description = open("README.rst").read(),
license = "GPLv3",
author = "TaoTao",
author_email = "taotao54321@gmail.com",
url = "https://github.com/taotao54321/fcdstools",
classifiers = (
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Topic :: System :: Emulators",
),
keywords = "nes famicom disk system fds",
install_requires = (
"setuptools",
"kaitaistruct",
"tabulate",
),
packages = setuptools.find_packages(exclude=()),
scripts = (
"fdsbuild",
"fdscheck",
"fdssjson",
"fdssplit",
),
package_data = {
"fcdstools" : (
"data/README.txt",
"data/fdsdb.json",
"data/fdsdb-ja.json",
),
},
)