-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
48 lines (46 loc) · 1.59 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
from setuptools import setup, find_packages
VERSION = "0.9.30"
setup(
name='wikidataintegrator',
version=VERSION,
author='Andra Waagmeester, Greg Stupp, Sebastian Burgstaller-Muehlbacher ',
author_email='[email protected]',
description='Python package for reading and writing to/from Wikidata',
license='MIT',
keywords='Wikidata genewiki biology chemistry medicine ShEx citations',
url='https://github.com/sulab/WikidataIntegrator',
packages=find_packages(),
# packages=['wikidataintegrator',
# 'wikidataintegrator.ref_handlers', 'wikidataintegrator.wdi_helpers'],
include_package_data=True,
## long_description=read('README.md'),
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
'requests',
'python-dateutil',
'simplejson',
'pandas',
'tqdm',
'mwoauth',
'oauthlib',
'jsonasobj',
'pyshex',
'backoff',
'shexer',
],
)