forked from inkcut/inkcut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "Inkcut",
version = "1.1",
packages = find_packages(),
scripts = ['say_hello.py'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
# metadata for upload to PyPI
author = "Jairus Martin",
author_email = "[email protected]",
description = "Gtk+ application for converting svg graphics to hpgl and sending them to a plotter.",
license = "GPL",
keywords = "inkcut, vinyl, cutting, plotting, plot, cut, sign, lettering, decal",
url = "http://inkcut.sourceforge.net", # project home page, if any
# could also include long_description, download_url, classifiers, etc.
)