jsoninspector/setup.py

28 lines
869 B
Python
Raw Normal View History

import ez_setup, sys, shutils
ez_setup.use_setuptools()
2010-05-27 16:29:45 +02:00
from setuptools import setup, find_packages
2010-05-27 16:29:45 +02:00
setup(
name = "jsoninspector",
version = "2.0",
packages = find_packages('src', exclude=['distribute_setup']),
scripts = ['jsoninspector.py'],
include_package_data = True,
2010-05-27 16:29:45 +02:00
package_data = {
2010-05-27 16:39:40 +02:00
# If any package contains *.glade files, include them:
2010-05-27 16:29:45 +02:00
'': ['*.glade'],
},
# metadata for upload to PyPI
author = "Jose Carlos Cuevas",
author_email = "reset.reboot@gmail.com",
description = "JSON Inspector is a simple application to study JSON code",
license = "GPLv3",
keywords = "json inspect gtk gnome",
2014-07-14 08:16:19 +02:00
url = "https://github.com/resetreboot/jsoninspector", # project home page, if any
2010-05-27 16:29:45 +02:00
)
# if sys.path != 'win32' and sys.path != 'darwin':
# shutils.copytree('locale/po/', '/usr/share/locale/')