forked from zelenij/python-drupal-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 903 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
25
26
27
28
29
30
31
import setuptools
def readme():
with open('README.rst') as f:
return f.read()
setuptools.setup(
name='drupal_download',
version='1.0.0',
description='Download data from Drupal using Python',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
keywords='drupal download data migration wagtail',
url='https://github.com/zelenij/python-drupal-download',
author="Andre Bar'yudin",
author_email='andre.baryudin@gmail.com',
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
install_requires=["requests", "python-dateutil", "furl", "configargparse"],
tests_require=['requests_mock', 'pytest'],
zip_safe=False
)