-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (32 loc) · 1 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup
def read(fname):
"""
Helper to read README
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
data_files = [
"schemata/{}".format(i)
for i in os.listdir("schemata")
if os.path.isfile("schemata/{}".format(i))
]
setup(
name="maruval",
version="1.0.6", # bump2version will edit this automatically!
description="Validator for marugoto game content",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="http://github.com/uzh/maruval",
author="Danny McDonald",
include_package_data=True,
zip_safe=False,
packages=["maruval"],
package_data={"maruval": data_files},
data_files=[("schemata", data_files)],
scripts=["bin/maruval", "bin/marufind", "bin/marupretty", "bin/marusearch"],
author_email="[email protected]",
license="MIT",
keywords=[],
install_requires=["jsonschema==3.2.0", "setuptools"],
dependency_links=[],
)