This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
69 lines (62 loc) · 2.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function
import os
import re
from setuptools import setup, find_packages
# Python versions this package is compatible with
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4'
# Packages that this package imports. List everything apart from standard lib packages.
install_requires = [
'sensirion-i2c-driver~=1.0.0',
'enum34;python_version<"3.4"',
]
# Packages required for tests and docs
extras_require = {
'test': [
'flake8~=3.7.8',
'pytest~=3.5.0',
'pytest-cov~=2.5.1',
'sensirion-shdlc-sensorbridge~=0.1.1'
],
'docs': [
'sphinx~=2.2.1',
'sphinx-rtd-theme~=0.4.3',
]
}
# Read version number from version.py
version_line = open("sensirion_i2c_stc/version.py", "rt").read()
result = re.search(r"^version = ['\"]([^'\"]*)['\"]", version_line, re.M)
if result:
version_string = result.group(1)
else:
raise RuntimeError("Unable to find version string")
# Use README.rst and CHANGELOG.rst as package description
root_path = os.path.dirname(__file__)
readme = open(os.path.join(root_path, 'README.rst')).read()
changelog = open(os.path.join(root_path, 'CHANGELOG.rst')).read()
long_description = readme.strip() + "\n\n" + changelog.strip() + "\n"
setup(
name='sensirion-i2c-stc',
version=version_string,
author='Björn Muntwyler',
author_email='bjoern.muntwyler@sensirion.com',
description='I2C driver for the Sensirion STC3x Sensor',
license='BSD',
keywords='I2C STC3x STC31 Sensirion',
url='http://developer.sensirion.com',
packages=find_packages(exclude=['tests', 'tests.*']),
long_description=long_description,
python_requires=python_requires,
install_requires=install_requires,
extras_require=extras_require,
classifiers=[
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)