-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 642 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
setup(name='mustache_to_handlebars',
version='0.98',
description='converts mustache to handlebars templates',
author='Justin Black',
url='https://github.com/spacether/mustache_to_handlebars',
packages=['mustache_to_handlebars'],
entry_points={
'console_scripts': [
'mustache_to_handlebars=mustache_to_handlebars.main:mustache_to_handlebars'
],
},
extras_require={
'dev': [
'pytest',
'black',
]
},
python_requires='>=3.7',
)