-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
47 lines (44 loc) · 1.31 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
import os
from setuptools import setup, find_packages
import versioneer
filename = os.path.join(os.path.dirname(__file__), 'requirements.txt')
requirements = open(filename).read().splitlines()
setup(
name='scholia',
author='Finn Aarup Nielsen',
author_email='[email protected]',
cmdclass=versioneer.get_cmdclass(),
description='Scholia - Wikidata-based scholarly profiles',
license='GPL',
keywords='wikidata',
url='https://github.com/WDscholia/scholia',
packages=find_packages(),
package_data={
"scholia": [
"data/*",
"app/templates/*",
"app/static/*",
"app/static/css/*",
"app/static/favicon/*",
"app/static/fonts/*",
"app/static/images/*",
"app/static/js/*",
"app/static/widgets/select2/css/*",
"app/static/widgets/select2/js/*"
]
},
install_requires=requirements,
long_description='',
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
],
tests_require=['pytest', 'flake8'],
version=versioneer.get_version(),
entry_points={
"console_scripts": [
"scholia = scholia.__main__:main",
],
},
)