-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 969 Bytes
/
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
"""Setup for the umlsparser package."""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Tom Oberhauser",
author_email="[email protected]",
name='umlsparser',
license='',
description='Parser for UMLS data',
version='v0.2.2',
long_description=README,
url='https://github.com/DATEXIS/UMLSParser',
packages=setuptools.find_packages(),
python_requires=">=3.6",
install_requires=['tqdm'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)