forked from kouroshparsa/iis_bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1001 Bytes
/
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
37
38
39
40
"""
iis_bridge
-----------
iis_bridge is an iis management tool for windows
Link
`````
* Source
https://github.com/kouroshparsa/
"""
from setuptools import Command, setup, find_packages
version = '1.8'
import sys
setup(
name='iis_bridge',
version=version,
url='https://github.com/kouroshparsa/iis_bridge',
download_url='https://github.com/kouroshparsa/iis_bridge/packages/%s' % version,
license='GNU',
author='Kourosh Parsa',
author_email="[email protected]",
description='an iis management tool for windows',
long_description=__doc__,
packages=find_packages(),
install_requires = ['Jinja2>=2.7.3'],
include_package_data=True,
package_data = {'iis_bridge': ['templates/*.html']},
zip_safe=False,
platforms='windows',
classifiers=[
'Environment :: Web Environment',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7'
]
)