-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
89 lines (75 loc) · 2.12 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
##########################
# Setup.py Configuration #
##########################
[metadata]
name = metacogitor
version = 1.0.0-dev
description = MetaCogitor provides a simple library to create role based agents for use in generative AI
long_description = file: README.md
long_description_content_type = text/markdown
# URLs associated with the project
url = ""
download_url = ""
project_urls =
Bug Tracker = ""
Source Code = ""
# Author information
author = Joshua Magady
author_email = [email protected]
maintainer = Joshua Magady
maintainer_email = [email protected]
# License Information
license = Proprietary
license_files =
LICENSE
# Search tags
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Developers
Operating System :: OS Independent
Framework :: Pytest
Framework :: tox
Framework :: Sphinx
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
# TODO add your topics from the Trove controlled vocabulary (see https://pypi.org/classifiers)
keywords =
MetaCogitor
# TODO add your own free-text keywords
[options]
# Random options
install_requires = file: requirements/base.txt
zip_safe = False
include_package_data = True
python_requires = >=3.10
# Where is my code
packages = find:
package_dir =
=src
[options.package_data]
MetaCogitor.locale = src/MetaCogitor/locale
MetaCogitor.static = src/MetaCogitor/static
[options.extras_require]
dev = file: requirements/dev.txt
prod = file: requirements/prod.txt
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
metacogitor = metacogitor.cli:main
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
[pycodestyle]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv,.venv
[coverage:run]
include = app/**
omit = *migrations*, *tests*
plugins =
django_coverage_plugin