-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (51 loc) · 1.7 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
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='remofile',
version='1.0.0.dev6',
packages=[
'remofile'
],
description='Quick and easy-to-use alternative to FTP',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.sonkun-dev.net/project/remofile',
author='Jonathan De Wachter',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Communications :: File Sharing',
'Topic :: Desktop Environment :: File Managers',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: System :: Filesystems',
],
keywords='remofile file transfer ftp alternative quick embeddable secure protocol',
project_urls={
'Documentation': 'http://remofile.readthedocs.io',
'Source' : 'https://github.com/sonkun/remofile/',
'Tracker' : 'https://github.com/sonkun/remofile/issues',
},
install_requires=[
'Click',
'pyzmq',
'shortuuid'
],
python_requires='>=3.6',
entry_points='''
[console_scripts]
remofile=remofile.cli:cli
rmf=remofile.cli:cli
''',
test_suite="tests"
)