-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.07 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
from setuptools import setup
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
]
install_requires = [
'numpy',
'scikit-image',
'torch',
'torchvision',
'opencv-python',
'matplotlib',
'pandas',
'seaborn'
]
setup(
name='pyDeepP2SA',
version='0.0.8',
description='A python package for particle size and shape analysis using deep learning',
py_modules=["pyDeepP2SA"],
package_dir={'': 'src'},
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
url='https://github.com/BrinthanK/pyDeepP2SA',
author='Brinthan K',
author_email='kanesalingambrinthan187@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='Particle shape analyser, PSD, Deep learning, Image processing, Circularity',
install_requires=install_requires
)