-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
59 lines (51 loc) · 1.43 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
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose --doctest-modules --pep8 --cov-config .coveragerc --cov=kant ./tests ./kant
pep8maxlinelength = 160
[build_sphinx]
source-dir = docs
[metadata]
name = Kant
version = attr: kant.__version__
home-page = http://github.com/patrickporto/kant
author = Patrick Porto
author_email = patrick.s.porto@gmail.com
description = A CQRS and Event Sourcing framework for Python
long-description = file: README
long-description-content_type = text/markdown
description-file = README.md
keywords = eventsourcing, cqrs, eventstore
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: Implementation :: CPython
project_urls =
Bug Tracker=https://github.com/patrickporto/kant/issues
Documentation=https://kant.readthedocs.io/en/latest/
Source Code=https://github.com/patrickporto/kant
[options]
zip_safe = false
include_package_data = false
packages = find:
install-requires =
python-dateutil
inflection
cuid.py
async_generator
asyncio_extras
aiopg
sqlalchemy
setup_requires =
pytest-runner
tests_require =
pytest
pytest-pycodestyle
pytest-cov
pytest-asyncio
python_requires = ~= 3.5