/ 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  # Always prefer setuptools over distutils
 9  from setuptools import setup, find_packages
10  
11  # To use a consistent encoding
12  from codecs import open
13  from os import path
14  
15  here = path.abspath(path.dirname(__file__))
16  
17  # Get the long description from the README file
18  with open(path.join(here, "README.rst"), encoding="utf-8") as f:
19      long_description = f.read()
20  
21  setup(
22      name="adafruit-circuitpython-featherwing",
23      use_scm_version=True,
24      setup_requires=["setuptools_scm"],
25      description="CircuitPython library that provides FeatherWing specific classes for those that "
26      "require a significant amount of initialization.",
27      long_description=long_description,
28      long_description_content_type="text/x-rst",
29      # The project's main homepage.
30      url="https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing",
31      # Author details
32      author="Adafruit Industries",
33      author_email="circuitpython@adafruit.com",
34      install_requires=[
35          "Adafruit-Blinka",
36          "adafruit-circuitpython-busdevice",
37          "adafruit-circuitpython-register",
38          "adafruit-circuitpython-ina219",
39          "adafruit-circuitpython-seesaw",
40          "adafruit-circuitpython-ht16k33",
41          "adafruit-circuitpython-dotstar",
42          "adafruit-circuitpython-neopixel",
43          "adafruit-circuitpython-ds3231",
44          "adafruit-circuitpython-gps",
45          "adafruit-circuitpython-adxl34x",
46          "adafruit-circuitpython-adt7410",
47      ],
48      # Choose your license
49      license="MIT",
50      # See https://pypi.python.org/pypi?%3Aaction=list_classifiers
51      classifiers=[
52          "Development Status :: 3 - Alpha",
53          "Intended Audience :: Developers",
54          "Topic :: Software Development :: Libraries",
55          "Topic :: System :: Hardware",
56          "License :: OSI Approved :: MIT License",
57          "Programming Language :: Python :: 3",
58          "Programming Language :: Python :: 3.4",
59          "Programming Language :: Python :: 3.5",
60      ],
61      # What does your project relate to?
62      keywords="adafruit ina219 featherwing joy joywing i2c "
63      "hardware micropython circuitpython",
64      # You can just specify the packages manually here if your project is
65      # simple. Or you can use find_packages().
66      packages=["adafruit_featherwing"],
67  )