forked from ePSIC-DLS/particlespy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires=["hyperspy",
"scikit-image>=0.17.1",
"scikit-learn>=0.21",
"trackpy",
"numpy>=1.16.5",
"PyQt5>=5.14.0"]
setuptools.setup(
name="particlespy",
package_dir={'particlespy':'particlespy'},
version="0.6.0",
author="Thomas Slater",
author_email="tjaslater@gmail.com",
description="A package to perform particle segmentation and analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ePSIC-DLS/particlespy",
packages=setuptools.find_packages(),
install_requires=install_requires,
package_data={
'particlespy':
[
'parameters/*'
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)