This repository has been archived by the owner on Nov 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 163
/
setup.py
63 lines (45 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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="[email protected]",
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",
"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",
"Programming Language :: Python :: 3.6",
],
keywords="sandbox files access",
packages=["maybe"],
install_requires=[
"six==1.10.0",
"blessings==1.6",
"python-ptrace==0.9.1",
],
setup_requires=[
"pytest-runner>=2.7",
],
tests_require=[
"pytest>=2.9.1",
],
entry_points={
"console_scripts": [
"maybe = maybe.maybe:main",
],
},
)