forked from fossasia/pslab-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.17 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
39
40
41
42
43
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pslab",
version="2.3.2",
description="Pocket Science Lab by FOSSASIA",
long_description=long_description,
long_description_content_type="text/markdown",
author="FOSSASIA PSLab Developers",
author_email="[email protected]",
url="https://pslab.io/",
install_requires=["numpy>=1.16.3", "pyserial>=3.4", "scipy>=1.3.0"],
python_requires=">=3.6",
packages=setuptools.find_packages(exclude=("tests",)),
package_data={
"": [
"*.css",
"*.png",
"*.gif",
"*.html",
"*.css",
"*.js",
"*.png",
"*.jpg",
"*.jpeg",
"*.htm",
"99-pslab.rules",
]
},
entry_points = {
'console_scripts': ['pslab=pslab.cli:cmdline'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
],
)