-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·59 lines (50 loc) · 1.6 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#! /usr/bin/env python
# coding: utf-8
from __future__ import print_function
import sys
from setuptools import find_packages, setup
setup_args = dict(
name="logopy",
packages=find_packages(),
version="0.0.4",
description=(
"""LogoPy: An implementation of the Logo programming """
"""language in Python with TK and SVG turtle back ends."""
),
long_description=(
"""LogoPy: An implementation of the Logo """
"""programming language in Python with TK and SVG turtle back ends."""
),
author="Carl (https://github.com/cwaldbieser)",
author_email="[email protected]",
url="https://github.com/cwaldbieser/logopy",
license="GPLv3",
platforms="Linux, Mac OS X",
keywords=[
"Logo",
"Turtle",
"SVG",
],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Logo",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
scripts=["bin/logopycli.py"],
package_data={"logopy": ["resources/html/*"]},
)
# setuptools requirements
if "setuptools" in sys.modules:
setup_args["install_requires"] = install_requires = []
install_requires.append("parsley")
install_requires.append("attrs")
install_requires.append("svgwrite")
install_requires.append("jinja2")
def main():
setup(**setup_args)
if __name__ == "__main__":
main()