-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (46 loc) · 1.48 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
44
45
46
47
48
49
50
from setuptools import find_packages, setup
from os import path
def get_version():
init_py_path = path.join(path.abspath(path.dirname(__file__)), "torchange",
"__init__.py")
init_py = open(init_py_path, "r").readlines()
version_line = [l.strip() for l in init_py if l.startswith("__version__")][0]
version = version_line.split("=")[-1].strip().strip("'\"")
return version
install_requires = [
'numpy',
'albumentations>=0.4.2',
'tifffile',
'scikit-image',
'tqdm',
'einops',
'timm',
'datasets[vision]',
]
setup(
name='torchange',
version=get_version(),
description='pytorch-change-models',
keywords='Remote Sensing, '
'Earth Vision, '
'Deep Learning, '
'Change Detection, '
'Change Data Generation, ',
packages=find_packages(exclude=['projects', 'tools']),
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Utilities',
],
url='https://github.com/Z-Zheng/pytorch-change-models',
author='Zhuo Zheng',
author_email='[email protected]',
license='CC-BY-NC 4.0',
setup_requires=[],
tests_require=[],
install_requires=install_requires,
zip_safe=False)