-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.02 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
35
36
#!/usr/bin/env python
from setuptools import find_packages, setup
VERSION = '1.2.0'
REPO_URL = 'https://github.com/drongo-framework/drongo-wing-jinja2'
setup(
name='drongo-wing-jinja2',
version=VERSION,
description='Drongo wing jinja2 module.',
author='Sattvik Chakravarthy, Sagar Chakravarthy',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'drongo>=1.2.0',
'drongo-wing-module>=1.2.0',
'Jinja2>=2.9.6',
],
packages=find_packages(),
url=REPO_URL,
include_package_data=True,
zip_safe=False,
)