-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.69 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (48 loc) · 1.69 KB
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
"""
dircifrar
A directory synchronization and encryption tool
(c) 2018-present Ching-Tsun Chou
MIT license (see LICENSE.txt)
"""
from setuptools import setup, find_packages
import glob, sys, os.path
src_path = os.path.abspath(("src"))
sys.path.insert(0, src_path)
import dircifrar
setup(
name = dircifrar.__pkg_name__,
version = dircifrar.__pkg_version__,
license = dircifrar.__pkg_license__,
description = dircifrar.__pkg_description__,
long_description = open(os.path.join('README.md')).read(),
author = dircifrar.__pkg_author__,
author_email = dircifrar.__pkg_email__,
url = dircifrar.__pkg_url__,
packages = find_packages('src'),
package_dir = {'': 'src'},
py_modules = [ os.path.splitext(os.path.basename(path))[0] for path in glob.glob('src/*.py') ],
include_package_data = True,
zip_safe = False,
keywords = ['directory', 'folder', 'update', 'synchronization', 'encryption'],
# Complete classifier list: https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers = [
'Development Status :: Pre-Alpha'
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Utilities',
],
python_requires = ">=3.6",
setup_requires=["setuptools", "wheel"],
install_requires = ('pynacl', 'pywatchman'),
tests_require = ["pytest>=3.2.1,!=3.3.0",
"hypothesis>=3.27.0"],
entry_points = {
'console_scripts': [
'dircifrar = dircifrar.main:main',
],
}
)