-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 895 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
39
40
#!/usr/bin/env python
from setuptools import find_packages, setup
REQUIRED_PKGS = [
"pytorch-ie>=0.18.1,<1.0.0",
"asciidag", # for visualization
]
TESTS_REQUIRE = [
"pytest",
"pytest-cov",
"plotext",
]
QUALITY_REQUIRE = [
"pre-commit",
]
EXTRAS_REQUIRE = {
"dev": TESTS_REQUIRE + QUALITY_REQUIRE,
"tests": TESTS_REQUIRE,
}
setup(
name="pie-utils",
version="0.7.0",
description="A collection of utilities to easy the usage of PyTorch-IE",
author="Arne Binder",
author_email="[email protected]",
url="https://github.com/ArneBinder/pie-utils",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
package_dir={"": "src"},
packages=find_packages("src"),
python_requires=">=3.9.0",
install_requires=REQUIRED_PKGS,
extras_require=EXTRAS_REQUIRE,
)