-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 895 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
from distutils.core import setup
add_keywords = dict(
entry_points={
'console_scripts': ['logmein-windows = logmein-windows.main:main'],
}, )
fhan = open('requirements.txt', 'rU')
requires = [line.strip() for line in fhan.readlines()]
fhan.close()
#print('We require: ', requires)
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
fhan = open('README.txt')
long_description = fhan.read()
fhan.close()
setup(
name='LogMeIn Windows',
description='LogMeIn Windows provides a GUI over LogMeIn',
version='0.0.8',
packages=['logmein-windows'],
license='GPLv3+',
author='Shubham Chaudhary',
author_email='[email protected]',
url='https://github.com/DevelopFreedom/logmein-windows',
long_description=long_description,
install_requires=requires, **add_keywords)