-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
42 lines (39 loc) · 1.66 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bloatectomy", # Replace with your own username
version="0.0.12",
author="Summer Rankin, Roselie Bright, Katherine Dowdy",
author_email="summerKRankin@gmail.com",
description="Bloatectomy: a method for the identification and removal of duplicate text in the bloated notes of electronic health records and other documents.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MIT-LCP/bloatectomy",
packages=['bloatectomy'],
license="GPLv3",
keywords=["python", "medical informatics","electronic health records",
"electronic medical records", "public health informatics",
"clinical information extraction", "informatics", "natural language processing"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Utilities",
],
python_requires='>=3.7',
)