-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·55 lines (51 loc) · 1.44 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
53
54
55
#!/usr/bin/env python3
import os
import setuptools
version = {}
with open("slice_db/version.py", "r") as f:
exec(f.read(), version)
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
author="Rivet Health",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
description="Capture, scrub, and restore subsets of PostgreSQL databases.",
entry_points={
"console_scripts": [
"slicedb=slice_db.cli.main:main",
]
},
extras_require={
"dev": ["black", "psutil", "pytest-env", "isort", "pytest", "snapshottest"]
},
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"asyncpg",
"dataclasses_json==0.3.7",
"jsonpath-ng",
"jsonschema",
"numpy",
"pg-sql",
"pyffx",
"uvloop",
],
name="slice-db",
packages=setuptools.find_packages(),
package_data={
"slice_db.formats": ["*.json"],
"slice_db.data": ["*.txt"],
},
project_urls={
"Issues": "https://github.com/rivethealth/slice-db/issues",
},
python_requires=">3.7.0",
url="https://github.com/rivethealth/slice-db",
version=version["__version__"],
)