initial commit
This commit is contained in:
42
setup.py
Normal file
42
setup.py
Normal file
@@ -0,0 +1,42 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
import json
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
install_requires: list = ["ocyan.main"]
|
||||
|
||||
# Add frets dependencies
|
||||
with open("smokee2ef1771368083/ocyan.json", encoding="utf-8") as fp:
|
||||
config = json.loads(fp.read())
|
||||
install_requires.extend(config["ocyan_plugins"])
|
||||
|
||||
extras_require: dict = {
|
||||
"test": [
|
||||
"pylint-django",
|
||||
"vdt.versionplugin.wheel",
|
||||
"coverage",
|
||||
"ocyan.plugin.testing",
|
||||
],
|
||||
"prd": ["psycopg2-binary"],
|
||||
}
|
||||
|
||||
PACKAGE_CLASSIFIERS = [
|
||||
"License :: Other/Proprietary License",
|
||||
"Framework :: Ocyan",
|
||||
]
|
||||
|
||||
setup(
|
||||
name="mandel-smokee2ef1771368083",
|
||||
version="0.1.0",
|
||||
url="https://git.mandelblog.com/mandel-projects/smokee2ef1771368083",
|
||||
author="Motolani Olaiya",
|
||||
author_email="motolaniolaiya@gmail.com",
|
||||
description="Ocyan project: smokee2ef1771368083",
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
python_requires=">=3.10",
|
||||
install_requires=install_requires,
|
||||
extras_require=extras_require,
|
||||
entry_points={"console_scripts": ["manage.py=smokee2ef1771368083.main:main"]},
|
||||
classifiers=PACKAGE_CLASSIFIERS,
|
||||
)
|
||||
Reference in New Issue
Block a user