-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 862 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 862 Bytes
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
from distutils.core import setup
setup(
name="needs",
packages=["needs"],
version="1.0.9",
description="Boolean Contexts",
author="Phil Condreay",
author_email="0astex@gmail.com",
url="https://github.com/astex/needs",
keywords=["context", "permissions", "needs", "roles"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet"
],
long_description="""\
Needs
-----
Boolean contexts. A pythonic way of expressing what your code needs
"""
)