-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (32 loc) · 1.25 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
import setuptools
with open('./README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='conflupy',
version='1.3.0',
author='Daeyeol Ryu',
author_email='[email protected]',
license='Apache-2.0',
description='A Python library for Atlassian Confluence REST API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/yoobato/conflupy',
py_modules=['confluence'],
python_requires='>=3.9',
install_requires=['requests'],
keywords= ['atlassian', 'confluence'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory',
]
)