-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·39 lines (34 loc) · 1.31 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
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# To make a release type:
# rm -rf build dist
# python setup.py sdist --formats=zip
# Then upload to PiPy with
# twine check dist/*
# twine upload dist/objbrowser-1.2.0.zip
from objbrowser.version import DEBUGGING, PROGRAM_VERSION
from setuptools import setup
assert not DEBUGGING, "DEBUGGING must be False"
setup(name = 'objbrowser',
version = PROGRAM_VERSION,
description = 'GUI for Python object introspection.',
long_description = open('README.txt').read(),
long_description_content_type = 'text/x-rst',
url = 'https://github.com/titusjan/objbrowser',
author = "Pepijn Kenter",
author_email = "[email protected]",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Adaptive Technologies',
'Topic :: Software Development',
'Topic :: Utilities'],
packages = ['objbrowser'],
install_requires = ['six', 'qtpy'])