forked from ohcnetwork/care
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 792 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
from setuptools import find_packages, setup
setup(
name="care",
version="0.1",
packages=find_packages(include=["care", "care.*"]),
include_package_data=True,
install_requires=[],
author="Open Healthcare Network",
author_email="[email protected]",
description="A Django app for managing healthcare across hospitals and care centers.",
license="MIT",
keywords="django care ohc",
url="https://github.com/ohcnetwork/care",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)