-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
52 lines (50 loc) · 1.22 KB
/
setup.py
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
from setuptools import (
find_packages,
setup,
)
DEV_REQUIRES = [
"black==20.8b1",
"pylint",
"pre-commit",
"mypy==0.782",
"sqlalchemy-stubs",
"pytest==6.0.1",
"pytest-cov",
"mkdocs",
]
setup(
name="rush",
version="0.1",
author="Sandeep Srinivasa",
author_email="[email protected]",
license="MIT",
description="A starter project to create a standalone TDD project with docker based postgresql fixtures",
python_requires=">=3.7",
packages=find_packages("src"),
package_dir={"": "src"},
install_requires=[
"alembic",
"psycopg2-binary",
"sqlalchemy",
"parse",
"pytest",
"pydantic",
"docker",
"pytest-mypy",
"pytest-black",
"pytest-isort",
"isort",
"pytest-cov",
"pendulum",
],
extras_require={"dev": DEV_REQUIRES},
include_package_data=True,
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: SQL",
],
)