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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
# Based on setup.py from https://github.com/pypa/sampleproject
from setuptools import setup
setup(
name="maybe",
version="0.4.0",
description="See what a program does before deciding whether you really want it to happen.",
long_description="For a detailed description, see https://github.com/p-e-w/maybe.",
url="https://github.com/p-e-w/maybe",
author="Philipp Emanuel Weidmann",
author_email="pew@worldwidemann.com",
license="GPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords="sandbox files access",
packages=["maybe"],
install_requires=[
"blessings==1.6",
"python-ptrace>=0.8.1",
],
tests_require=[
"pytest>=2.9.1",
],
entry_points={
"console_scripts": [
"maybe-launcher = maybe.maybe:main",
],
},
)
|