-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (29 loc) · 809 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
from setuptools import find_packages, setup
my_pckg = find_packages()
print(my_pckg)
setup(
name="tomopal",
version="1.0.19",
packages=my_pckg,
include_package_data=True,
url="https://github.com/robinthibaut/tomopal",
license="MIT",
author="Robin Thibaut",
author_email="[email protected]",
description="Your electrical resistivity tomography companion !",
long_description="Your electrical resistivity tomography companion !",
install_requires=[
"numpy",
"rasterio",
"vtk",
"geographiclib",
"scipy",
"pandas",
"matplotlib",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)