-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (26 loc) · 860 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import lua_call
setup(
name="lua_call",
version=lua_call.VERSION,
author="Josiah Carlson",
author_email="[email protected]",
url="http://github.com/josiahcarlson/lua-call/",
download_url="http://pypi.python.org/pypi/lua_call/",
py_modules=["lua_call"],
description="Call Lua scripts from other Lua scripts in Redis",
long_description=lua_call.__doc__,
license="MIT",
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
)