We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe24ec commit 0ac6f9dCopy full SHA for 0ac6f9d
setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup
+from setuptools import find_packages, setup
2
3
with open("./README.md") as fp:
4
long_description = fp.read()
@@ -12,8 +12,8 @@
12
author_email="joohwan.oh@outlook.com",
13
url="https://github.com/ArangoDB-Community/python-arango",
14
keywords=["arangodb", "python", "driver"],
15
+ packages=find_packages(exclude=["tests"]),
16
package_data={"arango": ["py.typed"]},
- packages=["arango"],
17
include_package_data=True,
18
python_requires=">=3.7",
19
license="MIT",
0 commit comments