-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 760 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 760 Bytes
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
from setuptools import setup, find_packages
setup(
name = "first_break_picking",
version = "0.0.1",
description = "A package to perform first break",
long_description = open("readme.md",
encoding="utf8").read(),
author='Amir Mardan',
uthor_email = "mardan.amir.h@gmail.com",
license = "MIT",
packages=find_packages(exclude=["*.pyc"]),
include_package_data=True,
package_data={
"": ["*.txt", "fb_20.tar"],
},
install_requires = [
# "segyio",
"pandas",
"openpyxl",
"numpy",
"torch",
"torchvision",
"tqdm",
"matplotlib",
"segmentation_models_pytorch"
],
zip_safe = False
)