-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
29 lines (26 loc) · 860 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
import os
import pathlib
from setuptools import setup, find_packages
setup_py_dir = os.path.dirname(os.path.abspath(__file__))
os.chdir(setup_py_dir)
setup(
name='pyliquibase',
entry_points={
'console_scripts': [
'pyliquibase = pyliquibase:main',
],
},
version='2.3.1',
packages=find_packages(),
author="Memiiso Organization",
description='Python liquibase',
long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url='https://github.com/memiiso/pyliquibase',
download_url='https://github.com/memiiso/pyliquibase/archive/master.zip',
include_package_data=True,
license="Apache License 2.0",
test_suite='tests',
install_requires=["pyjnius~=1.6.1"],
python_requires='>=3.8',
)