-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (40 loc) · 1.28 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
import setuptools
with open("README.md", "r") as file:
long_description = file.read()
#with open("requirements.txt") as file:
# required = file.read().splitlines()
setuptools.setup(
name="building-inspection-toolkit",
version="0.3.0",
author="Philipp J. Roesch, Johannes Flotzinger",
author_email="[email protected], [email protected]",
description="Building Inspection Toolkit",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phiyodr/bridge-inspection-toolkit",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition"
],
packages=setuptools.find_packages(),
python_requires='>=3.6',
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.txt", "*.csv", "*.json"]},
install_requires=[
"numpy > 1.20",
"requests",
"torch",
"torchvision",
"pandas",
"Pillow",
"patool",
"pathlib",
"tqdm",
"matplotlib",
"opencv-python-headless",
"efficientnet_pytorch",
"torchmetrics"
]
)