This repository was archived by the owner on Jun 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (53 loc) · 1.48 KB
/
setup.py
File metadata and controls
executable file
·56 lines (53 loc) · 1.48 KB
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
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "microcosm-sqlite"
version = "2.0.0"
setup(
name=project,
version=version,
description="Opinionated persistence with SQLite",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Globality Engineering",
author_email="engineering@globality.com",
url="https://github.com/globality-corp/microcosm-sqlite",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
python_requires=">=3.11",
keywords="microcosm",
install_requires=[
"SQLAlchemy-Utils>=0.33.3",
"SQLAlchemy>=1.2.0",
"alembic>=1.0.11",
"microcosm>=4.0.0",
],
extras_require={
"test": [
"coverage>=3.7.1",
"PyHamcrest>=1.8.5",
"pytest-cov>=5.0.0",
"pytest>=6.2.5",
],
"lint": [
"flake8",
"flake8-print",
"flake8-isort",
],
"typehinting": [
"mypy",
"types-setuptools",
],
},
setup_requires=[
],
dependency_links=[
],
entry_points={
"microcosm.factories": [
"sqlite = microcosm_sqlite.factories:SQLiteBindFactory",
"sqlite_builder = microcosm_sqlite.builders:SQLiteBuilder",
"sqlite_dumper = microcosm_sqlite.dumpers:SQLiteDumper",
],
},
)