forked from TransparentHealth/django-monfhir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (32 loc) · 1.31 KB
/
setup.py
File metadata and controls
39 lines (32 loc) · 1.31 KB
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(name="django-monfhir",
version="0.0.0.9",
license='GPL2',
packages=['monfhir', 'monfhir.views',],
description="A FHIR Server as a reusable Django apps. (Requires MongoDB)",
long_description=README,
author="Alan Viars (contributions - Mark Scrimshire)",
author_email="sales@videntity.com",
url="https://github.com/transparenthealth/django-monfhir",
download_url="https://github.com/transparenthealth/django-monfhir/tarball/master",
install_requires=[
'django>1.8', 'django-oauth-toolkit-scopes-backend',
'django-cors-headers', 'jsonschema', 'pymongo'],
include_package_data=True,
scripts=[],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)