diff options
author | Diego Elio Pettenò <flameeyes@flameeyes.com> | 2020-03-25 18:17:24 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-03-25 18:40:01 +0100 |
commit | a58cfed19c55fb239680cd9d464c295efcc7a865 (patch) | |
tree | d80b075b9dc75b6c4da3f618fc8ac3600ec656ae | |
parent | Update build status to point to travis-ci.com. (diff) | |
download | glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar.gz glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar.bz2 glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar.lz glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar.xz glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.tar.zst glucometerutils-a58cfed19c55fb239680cd9d464c295efcc7a865.zip |
-rw-r--r-- | setup.cfg | 23 | ||||
-rw-r--r-- | setup.py | 23 |
2 files changed, 23 insertions, 23 deletions
@@ -1,3 +1,26 @@ +[metadata] +name = glucometerutils +description = Glucometer access utilities +long_description = file:README.md +long_description_content_type: text/markdown +author = Diego Elio Pettenò +author_email = flameeyes@flameeyes.com +license = MIT +url = https://flameeyes.com/p/glucometerutils +keywords = + glucometer + diabetes +classifiers = + Programming Language :: Python + Programming Language :: Python :: 3 + Development Status :: 4 - Beta + Environment :: Console + Operating System :: OS Independent + License :: OSI Approved :: MIT License + Intended Audience :: End Users/Desktop + Topic :: Scientific/Engineering :: Medical Science Apps. + + [tool:pytest] addopts = --color=yes @@ -53,31 +53,8 @@ class PyTestCommand(TestCommand): sys.exit(errno) -with open("README.md", "rt") as fh: - long_description = fh.read() - - setup( - name="glucometerutils", - version="1", - description="Glucometer access utilities", - long_description=long_description, - long_description_content_type="text/markdown", - author="Diego Elio Pettenò", - author_email="flameeyes@flameeyes.com", - url="https://www.flameeyes.com/p/glucometerutils", - keywords=["glucometer", "diabetes"], python_requires="~=3.7", - classifiers=[ - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Development Status :: 4 - Beta", - "Environment :: Console", - "Operating System :: OS Independent", - "License :: OSI Approved :: MIT License", - "Intended Audience :: End Users/Desktop", - "Topic :: Scientific/Engineering :: Medical Science Apps.", - ], packages=find_packages(exclude=["test", "udev"]), data_files=[("lib/udev/rules", ["udev/69-glucometerutils.rules"]),], install_requires=["attrs",], |