-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
46 lines (43 loc) · 1.38 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
44
45
46
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = "1.0.0"
setup(
name="senaite.serial.cli",
version=version,
description="Command line interface for RS-232 devices",
long_description=open("README.rst").read(),
long_description_content_type="text/markdown",
license="GPLv2",
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords=["senaite", "lims", "rs-232", "lis1-a"],
author="RIDING BYTES & NARALABS",
author_email="[email protected]",
url="https://github.com/senaite/senaite.serial.cli",
packages=find_packages("src"),
package_dir={"": "src"},
namespace_packages=["senaite", "senaite.serial"],
include_package_data=True,
zip_safe=False,
install_requires=[
"pyserial",
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
"dev": [
"pytest",
"coverage",
]
},
entry_points={
"console_scripts": ["senaite_serial=senaite.serial.cli.app:main"]
}
)