-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.13 KB
/
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
30
31
32
33
34
import pathlib
from setuptools import setup
README = f"{pathlib.Path(__file__).parent}/README.md"
with open(README) as r:
README = r.read()
setup(
name='pug4py',
version='1.0.1',
author='Adriano Romanazzo (multiversecoder)',
description='Pug4Py is a tool that allows you to integrate Pug js as a templating engine into any Python framework.',
long_description=README,
long_description_content_type="text/markdown",
install_requires=["mako"],
packages=['pug4py'],
package_dir={'pug4py': 'pug4py'},
include_package_data=True,
url='https://github.com/multiversecoder/pug4py',
download_url='https://pypi.python.org/pypi/pug4py',
author_email='pythonmultiverse@gmx.com',
license='MIT License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: JavaScript',
],
)