-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 1.16 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
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='ms5803py',
version='1.0.0',
description='Python library for MS5803-14BA pressure sensor for Raspberry Pi over i2c',
long_description=long_description,
long_description_content_type='text/markdown',
copyright = 'Copyright (c) 2018 Nick Crews',
url='https://github.com/NickCrews/ms5803py',
author='Nick Crews',
author_email='[email protected]',
license='MIT',
packages=['ms5803py'],
zip_safe=False,
keywords = [],
classifiers = [
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
])