/ setup.py
setup.py
 1  """A setuptools based setup module.
 2  
 3  See:
 4  https://packaging.python.org/en/latest/distributing.html
 5  https://github.com/pypa/sampleproject
 6  """
 7  
 8  from setuptools import setup, find_packages
 9  
10  # To use a consistent encoding
11  from codecs import open
12  from os import path
13  
14  here = path.abspath(path.dirname(__file__))
15  
16  # Get the long description from the README file
17  with open(path.join(here, "README.rst"), encoding="utf-8") as f:
18      long_description = f.read()
19  
20  setup(
21      name="adafruit-circuitpython-dps310",
22      use_scm_version=True,
23      setup_requires=["setuptools_scm"],
24      description="Library for the DPS310 Precision Barometric Pressure Sensor",
25      long_description=long_description,
26      long_description_content_type="text/x-rst",
27      # The project's main homepage.
28      url="https://github.com/adafruit/Adafruit_CircuitPython_DPS310",
29      # Author details
30      author="Adafruit Industries",
31      author_email="circuitpython@adafruit.com",
32      install_requires=[
33          "Adafruit-Blinka",
34          "adafruit-circuitpython-busdevice",
35          "adafruit-circuitpython-register",
36      ],
37      # Choose your license
38      license="MIT",
39      # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
40      classifiers=[
41          "Development Status :: 3 - Alpha",
42          "Intended Audience :: Developers",
43          "Topic :: Software Development :: Libraries",
44          "Topic :: System :: Hardware",
45          "License :: OSI Approved :: MIT License",
46          "Programming Language :: Python :: 3",
47          "Programming Language :: Python :: 3.4",
48          "Programming Language :: Python :: 3.5",
49      ],
50      # What does your project relate to?
51      keywords="adafruit blinka circuitpython micropython dps310 pressure sensor barometric "
52      "altimeter altitude",
53      # You can just specify the packages manually here if your project is
54      # simple. Or you can use find_packages().
55      # TODO: IF LIBRARY FILES ARE A PACKAGE FOLDER,
56      #       CHANGE `py_modules=['...']` TO `packages=['...']`
57      py_modules=["adafruit_dps310"],
58  )