-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,40 @@ | ||
import os | ||
from setuptools import find_packages, setup | ||
|
||
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme: | ||
with open(os.path.join(os.path.dirname(__file__), 'README.md')) 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="openimis-be-policy", | ||
version="1.3.0", | ||
name='openimis-be-policy', | ||
version='1.8.0', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
license="GNU AGPL v3", | ||
description="The openIMIS Backend Policy reference module.", | ||
license='GNU AGPL v3', | ||
description='The openIMIS Backend Policy reference module.', | ||
# long_description=README, | ||
url="https://openimis.org/", | ||
author="Xavier Gillmann", | ||
author_email="[email protected]", | ||
url='https://openimis.org/', | ||
author='Xavier Gillmann', | ||
author_email='[email protected]', | ||
install_requires=[ | ||
"django", | ||
"django-db-signals", | ||
"djangorestframework", | ||
"openimis-be-claim", | ||
"openimis-be-insuree", | ||
"openimis-be-product", | ||
'django', | ||
'django-db-signals', | ||
'djangorestframework', | ||
'openimis-be-claim', | ||
'openimis-be-insuree', | ||
'openimis-be-product', | ||
], | ||
classifiers=[ | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Framework :: Django :: 3.0", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
'Framework :: Django :: 3.0', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: GNU Affero General Public License v3', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
) |