forked from peeter123/digikey-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.12 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="digikey-api",
version="0.4.0",
author="Peter Oostewechel",
author_email="[email protected]",
license="GPL v3",
url="https://github.com/peeter123/digikey-api",
description="Python client for Digikey API",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(exclude=['contrib', 'docs', 'tests']),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development",
],
install_requires=[
'requests>=2.22.0',
'retrying>=1.3.3',
'fake-useragent>=0.1.11',
'schematics>=2.1.0',
'inflection>=0.3.1',
'certauth>=1.3.0',
'urllib3>=1.25.3'
],
tests_requires=['pytest>=5.1.2'],
)