-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 980 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 980 Bytes
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
import setuptools
with open("README.md", "r", encoding="utf-8") as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="asitiger",
version="0.2.1",
author="Chili Johnson",
author_email="chilij@chilij.com",
description="A thin Python interface for communicating with ASI Tiger Controllers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/System1Bio/asitiger",
packages=setuptools.find_packages(),
python_requires=">=3.6",
install_requires=["pyserial>=3.0"],
extras_require={
"dev": [
"black==19.10b0",
"flake8-bugbear==19.8.0",
"flake8==3.7.9",
"pre-commit>=2.7.1",
],
"test": ["pytest==6.1.2"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)