-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (22 loc) · 822 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (22 loc) · 822 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
#!/usr/bin/env python3
from setuptools import setup
import os
pkg_dir = os.path.abspath(os.path.dirname(__file__))
readme_fn = os.path.join(pkg_dir, 'README.md')
with open(readme_fn, encoding='utf-8') as file:
long_description = file.read()
setup(
name='fastdbfs',
version='0.5',
description="Interactive command line client for Databricks DBFS",
long_description=long_description,
long_description_content_type='text/markdown',
url="http://github.com/salva/fastdbfs",
author="Salvador Fandiño García",
author_email="sfandino@yahoo.com",
license='GPLv3',
license_files = ('LICENSE.txt',),
packages=['fastdbfs'],
install_requires=[ "progressbar2", "aiohttp", "humanfriendly", "dateparser" ],
entry_points={'console_scripts': ['fastdbfs=fastdbfs.runner:run']}
);