Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
delcroip authored Oct 31, 2024
1 parent 73d08e3 commit a1f1162
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions setup.py
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',
],
)

0 comments on commit a1f1162

Please sign in to comment.