-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
36 lines (34 loc) · 1.25 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
import os
from setuptools import setup, find_packages
from pkg_resources import resource_filename
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup (
name = "omnigraffle-export",
version = "1.7.1",
packages = find_packages(exclude='tests'),
install_requires = ['appscript','pyobjc'],
author = "Filip Krikava",
author_email = "[email protected]",
description = "A command line utility that exports omnigraffle canvases files into various formats.",
long_description = read("README.md"),
license = "http://www.opensource.org/licenses/mit-license.php",
keywords = "omnigraffle export",
url = "https://github.com/fikovnik/omnigraffle-export",
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
'Operating System :: MacOS :: MacOS X',
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities"
],
entry_points = {
'console_scripts': [
'omnigraffle-export = omnigraffle_export.omnigraffle_export:main',
],
},
test_suite = 'tests',
zip_safe = True,
)