-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
24 lines (21 loc) · 928 Bytes
/
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
from setuptools import find_packages, setup
with open('README.md', encoding='utf-8') as file:
long_description = file.read()
setup(name='PyDoof', version='4.2.0', author='Doofinder',
python_requires='>=3.6.7',
author_email='[email protected]',
description="Doofinder's search & management API client",
url='https://github.com/doofinder/pydoof',
packages=find_packages(),
include_package_data=True,
install_requires=['requests >= 1.2.3'],
tests_require=['parameterized >= 0.7.4'],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
])