-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (34 loc) · 1.27 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
from setuptools import setup, find_packages
from text2term.config import VERSION
description = 'a tool for mapping free-text descriptions of entities to ontology terms'
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='text2term',
version=VERSION,
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
url='https://github.com/ccb-hms/ontology-mapper',
license='MIT',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author='Center for Computational Biomedicine, Harvard Medical School',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering'
],
python_requires=">=3.9",
)