-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.13 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
import pathlib
from setuptools import setup
from setuptools import find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
description = "A python wrapper for DVC API"
install_requires = ["dvc[s3]==2.8.3"]
setup_requires = []
tests_require = []
setup(
name="dvcw",
version="0.0.1-alpha",
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
description=description,
long_description=long_description,
url="https://github.com/benouinirachid/dvcw",
author="Rachid Benouini",
keywords="dvc, s3, data version, wrapper, api",
author_email="[email protected]",
license="Apache License 2.0",
install_requires=install_requires,
setup_requires=setup_requires,
test_suite="tests",
include_package_data=True,
tests_require=tests_require,
packages=find_packages(),
zip_safe=False,
)