-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (55 loc) · 1.76 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
try:
from setuptools import find_packages, setup
except ImportError:
print(
"Package setuptools is missing from your Python installation. "
"You can install it by 'pip3 install setuptool' command."
)
exit(1)
try:
from pathlib import Path
except ImportError:
print(
"Package pathlib is missing from your Python installation. "
"You can install it by 'pip3 install pathlib' command."
)
exit(1)
project_dir = Path(__file__).parent
long_description = (project_dir / "README.md").read_text()
setup(
name='bucketit',
version='0.6',
license='MIT',
author="Anton Sazonov",
description="BucketIt is a CLI tool for uploading files to S3 bucket.",
long_description_content_type='text/markdown',
long_description=long_description,
packages=find_packages(),
# package_dir={'': 'bucketit'},
url='https://github.com/sazonovanton/BucketIt',
keywords='BucketIt CLI Tool',
include_package_data=True,
install_requires=[
'boto3',
],
entry_points='''
[console_scripts]
bucketit=bucketit.bucketit:cli
''',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
project_urls={
'Source': 'https://github.com/sazonovanton/BucketIt',
},
)