forked from WojciechMula/canvas2svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.26 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
# -*- coding: utf-8 -*-
from distutils.core import setup
def get_readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'canvasvg',
version = '1.0.0',
description = "Save Tkinter Canvas in SVG file",
author = "Wojciech Muła",
author_email = "[email protected]",
maintainer = "Wojciech Muła",
maintainer_email = "[email protected]",
url = "http://github.com/WojciechMula/canvas2svg",
license = "BSD (3 clauses)",
long_description = get_readme(),
packages = ['canvasvg'],
package_dir = {'canvasvg': ''},
keywords = [
"tkinter",
"tk",
"canvas",
"svg",
"screenshot",
],
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
],
)