Skip to content

Commit

Permalink
setup.py, setup.cfg and pyproject.toml added.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsesic committed Jan 25, 2022
1 parent 5ac0884 commit 50dd620
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pyproject.toml
@@ -0,0 +1,15 @@

[tool.isort]
profile = "black"
line_length = 99

[tool.black]
line-length = 99
exclude = '''
/(
\.git
| \.tox
| \.venv
| dist
)/
'''
30 changes: 30 additions & 0 deletions setup.cfg
@@ -0,0 +1,30 @@
[metadata]
name = judaicalink-labs
version = 0.0.1
description = Django webapp for the JudaicaLink project
long_description = file: README.md
url = https://labs.judaicalink.org/
author = The JudaicaLink Team
author_email = schnabel@hdm-stuttgart.de
license = MIT-License
classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Intended Audience :: Users
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content

[options]
include_package_data = true
packages = find:
python_requires = >=3.8
install_requires =
Django >= 3.2
8 changes: 8 additions & 0 deletions setup.py
@@ -0,0 +1,8 @@
#!/usr/bin/env python
from setuptools import setup, find_packages

setup(name='judaicalink-labs',
version='0.0.1',
packages=find_packages(),
scripts=['manage.py'])

0 comments on commit 50dd620

Please sign in to comment.