-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 748 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 748 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
27
28
29
30
31
32
33
import re
from setuptools import setup
version = re.search(
r'^VERSION\s=\s"(.*)"',
open('spell/spell.py').read(),
re.M
).group(1)
name = re.search(
r'^NAME\s=\s"(.*)"',
open('spell/spell.py').read(),
re.M
).group(1)
setup(
name = name,
version = version,
packages = [name],
install_requires = [
"pyyaml"
],
package_data = {
"spell": ["tables/*.yml"]
},
entry_points = {
"console_scripts": ["spell=spell.spell:main"]
},
description = "Spell text using a spelling alphabet",
long_description = "Commandline utility to spell any given text using different spelling alphabets.",
author = "Remo Giermann",
author_email = "mo@liberejo.de",
)