forked from WolfgangFahl/dblpconf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.48 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
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='dblpconf',
version='0.0.5',
description='dblp conf',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/WolfgangFahl/dblpconf',
download_url='https://github.com/WolfgangFahl/dblpconf',
author='Wolfgang Fahl',
author_email='[email protected]',
license='Apache',
project_urls=OrderedDict(
(
("Documentation", "http://wiki.bitplan.com/index.php/Dblpconf"),
("Code", "https://github.com/WolfgangFahl/dblpconf"),
("Issue tracker", "https://github.com/WolfgangFahl/dblpconf/issues"),
)
),
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
packages=['dblp'],
package_data={
'templates': ['*.html'],
},
install_requires=[
'pyFlaskBootstrap4',
'py-3rdparty-mediawiki>=0.1.23',
'pylodstorage',
'lxml',
'OpenResearchMigration>=0.0.3',
'wikirender>=0.0.5'
],
zip_safe=False)