forked from eesd-epfl/PyCrack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 911 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='PyCrack',
version="0.0.6",
url='https://github.com/eesd-epfl/PyCrack',
description="PyCrack is a Python toolbox for analysis and quantification of cracks structural systems using optical methods.",
author="Ketson R. M. dos Santos",
author_email="[email protected]",
license='MIT',
platforms=["OSX", "Windows", "Linux"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.pdf"]},
install_requires=[
"numpy", "scipy", "matplotlib", "scikit-learn", "scikit-image"
],
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Image Processing',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)