-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (30 loc) · 783 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (30 loc) · 783 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
30
from setuptools import setup, find_packages
name='lua2pack'
setup(
name="lua2pack",
package_data={'': ['lua2pack/templates/*']},
include_package_data=True,
version="1.1.0",
description = "Generate RPM or DSC spec files from luarocks",
summary = "This utility is used for generating files of specific template from luarocks",
license = "GPLv3",
url = "https://github.com/huakim/lua2pack",
packages=find_packages(),
entry_points = {
'console_scripts': [
'lua2pack = lua2pack:main'
],
},
install_requires=[
'jinja2-easy.generator',
'lupa',
'luadata.luatable',
'toposort',
'platformdirs',
'jinja2',
'requests',
'requests-glob > 0.3.0',
'requests-text',
'requests-stdin'
],
)