forked from BITPlan/pyWikiCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (46 loc) · 1.53 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
from setuptools import setup
import os
from collections import OrderedDict
try:
long_description = ""
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
except:
print('Curr dir:', os.getcwd())
long_description = open('../../README.md').read()
setup(name='pyWikiCMS',
version='0.0.19',
description='python implementation of a Mediawiki based Content Management System',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/BITPlan/pyWikiCMS',
download_url='https://github.com/BITPlan/pyWikiCMS',
author='Wolfgang Fahl',
author_email='[email protected]',
license='Apache',
project_urls=OrderedDict(
(
("Documentation", "http://wiki.bitplan.com/index.php/PyWikiCMS"),
("Code", "https://github.com/BITPlan/pyWikiCMS"),
("Issue tracker", "https://github.com/BITPlan/pyWikiCMS/issues"),
)
),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
packages=['frontend'],
package_data={
'templates': ['*.html'],
},
install_requires=[
'lxml',
'pyFlaskBootstrap4',
'py-3rdparty-mediawiki',
'pydevd',
'beautifulsoup4'
],
zip_safe=False)