-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (24 loc) · 786 Bytes
/
setup.py
File metadata and controls
31 lines (24 loc) · 786 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
31
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
def readall(*args):
with open(os.path.join(here, *args), encoding='utf8') as fp:
return fp.read()
README = readall('README.md')
setup(
name='srvwrapper',
version='1.5',
description='srvwrapper wraps any applications to run as Windows Service',
long_description=README,
long_description_content_type="text/markdown",
author='Gerhard Tan',
author_email='gerhard.gh.ta@gmail.com',
url='https://github.com/koho/srvwrapper',
py_modules=['srvwrapper'],
entry_points={
"console_scripts": [
"srvwrapper=srvwrapper:main",
],
},
data_files=[('Scripts', ['ServiceWrapper.exe'])],
)