-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (50 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from congruence.__init__ import __version__
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='congruence',
description=('A command line interface for Confluence'),
author='Adrian Vollmer',
url='https://github.com/AdrianVollmer/Congruence',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
version=__version__,
license='GPL3',
install_requires=[
'html2text',
'markdown',
'beautifulsoup4',
'lxml',
'pyyaml',
'pyxdg',
'pytz',
'python-dateutil',
'requests',
'urwid < 2.2',
],
entry_points={
'console_scripts': [
'congruence = congruence.__main__:main',
]
},
packages=find_packages(),
scripts=[],
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console :: Curses ',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop ',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Office/Business ',
],
)