Skip to content

Commit

Permalink
make python package
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Nov 7, 2022
1 parent 4fd9f8a commit f7e5679
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# studio-models
33 changes: 33 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
from setuptools import find_packages, setup

setup(
name='studio-api',
version='0.0.1',
description="""Django app for handling REST-API in Studio""",
url='https://www.scaleoutsystems.com',
include_package_data=True,
py_modules=['api'],
python_requires='>=3.6,<4',
install_requires=[
"django==4.0.6",
"requests==2.27.1",
"Pillow==9.0.0",
"django-guardian==2.4.0",
"Markdown==3.3.6",
"django-tagulous==1.3.3",
"minio==7.0.2",
"s3fs==2022.1.0"
],
license="Copyright Scaleout Systems AB. See license for details",
zip_safe=False,
keywords='',
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)

0 comments on commit f7e5679

Please sign in to comment.