-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (27 loc) · 791 Bytes
/
setup.py
File metadata and controls
36 lines (27 loc) · 791 Bytes
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
from setuptools import setup, find_packages
from fullcontact.__about__ import *
requirements = [
"requests>=2.23.0,<3",
"urllib3>=1.25.7,<2"
]
with open("README.md", "r") as readme:
long_description = readme.read()
setup(
name=__name__,
version=__version__,
author=__author__,
author_email=__author_email__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fullcontact/fullcontact-python-client",
zip_safe=False,
packages=find_packages(exclude=['tests']),
include_package_data=True,
python_requires='~=3.5',
install_requires=requirements,
extras_require={
'develop': [ "pytest==5.4.1" ]
},
license=__license__
)