This repository was archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
51 lines (47 loc) · 1.66 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
import io
import sys
if sys.version_info[0] < 3:
print('\nPython 3 or higher required. Try:\n'
'$ sudo pip3 install standardnotes-fs')
sys.exit(1)
import setuptools
with io.open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='standardnotes-fs',
version='0.0.2',
author='Tanner Collin',
author_email='[email protected]',
maintainer='Tanner Collin',
maintainer_email='[email protected]',
description='Mount your Standard Notes as a filesystem.',
keywords='standard-notes standard-file fuse standardnotes secure encrypted notes fusepy',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/tannercollin/standardnotes-fs',
license='GPLv3',
install_requires=[
'appdirs',
'fusepy',
'iso8601',
'pycryptodome',
'requests',
],
python_requires='>=3',
packages=setuptools.find_packages(),
classifiers=(
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Filesystems',
'Topic :: Text Editors :: Text Processing',
),
entry_points={'console_scripts': ['snfs=standardnotes_fs.standardnotes_fs:main']},
)