-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
59 lines (52 loc) · 1.59 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
""""
Migro
=====
Migro - Uploadcare migration tool.
"""
import re
from setuptools import find_packages, setup
with open('migro/__init__.py', 'r') as fd:
version = re.search(r"^__version__\s*=\s*['\']([^'\']*)['\']",
fd.read(), re.MULTILINE).group(1)
long_description = open('README.rst', encoding='utf-8').read()
setup(
name='uploadcare-migro',
version=version,
description='Uploadcare migration tool',
long_description=long_description,
url='https://github.com/uploadcare/migro',
license='MIT',
author='Uploadcare team',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'migro = migro.cli:cli',
]
},
zip_safe=False,
install_requires=[
'aiohttp==3.9.5',
'click==8.1.7',
'python-dateutil==2.8.2',
'tqdm==4.66.4',
'colorama==0.4.6',
'boto3==1.34.80',
'botocore==1.34.80',
'python-dotenv==1.0.1'
],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
)