-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 778 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 778 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
29
import os
from setuptools import find_packages
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "luna",
version = "0.0.1",
author = "Martin Matusiak",
author_email = "[email protected]",
description = ("A Lua interpreter"),
license = "MIT",
keywords = "lua interpreter",
#url = "http://packages.python.org/an_example_pypi_project",
scripts=[
"bin/lua",
],
packages=find_packages(exclude=['tests']),
install_requires=read('requirements.txt'),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
#"Topic :: Utilities",
#"License :: OSI Approved :: BSD License",
],
)