-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (27 loc) · 836 Bytes
/
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="redactdump",
version="0.4.0",
author="math280h",
packages=setuptools.find_packages(include=['redactdump', 'redactdump.*']),
include_package_data=True,
url="https://github.com/math280h/redactdump",
description="redactdump",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'rich==10.15.2',
'PyYAML==6.0',
'schema==0.7.5',
'configargparse==1.5.3',
'SQLAlchemy~=1.4.27',
'psycopg2-binary==2.9.3',
'pymysql==1.0.2',
'faker==10.0.0'
],
entry_points={
'console_scripts': ['redactdump=redactdump.app:start_application']
}
)