2010-05-27 16:29:45 +02:00
|
|
|
import distribute_setup
|
|
|
|
distribute_setup.use_setuptools()
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
|
|
name = "jsoninspector",
|
2014-07-14 08:16:19 +02:00
|
|
|
version = "1.5",
|
2010-05-27 17:45:19 +02:00
|
|
|
packages = find_packages('src', exclude=['distribute_setup']),
|
|
|
|
scripts = ['src/jsoninspector.py'],
|
2010-05-27 16:39:40 +02:00
|
|
|
entry_points = {
|
|
|
|
'gui_scripts': [
|
2010-05-27 17:45:19 +02:00
|
|
|
'jsoninspector = jsoninspector:MainApp.start',
|
2010-05-27 16:39:40 +02:00
|
|
|
]
|
|
|
|
},
|
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
|
|
|
)
|