-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·57 lines (51 loc) · 1.81 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
#!/usr/bin/env python3
# much of the structure here was cribbed from
# https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README'), encoding='utf-8') as f:
long_description = f.read()
version = {}
with open("assword/version.py") as f:
exec(f.read(), version)
setup(
name = 'assword',
version = version['__version__'],
description = 'Simple and secure password management system.',
long_description = long_description,
author = 'Jameson Rollins',
author_email = '[email protected]',
url = 'https://finestructure.net/assword',
license = 'GPLv3+',
packages = ['assword'],
keywords = ['passwords password-management'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# maybe extend this? "assword gui" won't work on anything but
# X11, but the rest of it might still be useful.
'Environment :: X11 Applications',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only'],
install_requires = [
'pygpgme',
'PyGobject',
],
# You can install this optional dependency using the following syntax:
# $ pip install -e .xdo
extras_require={
'xdo': ['xdo'],
},
# https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/
# should we have a 'gui_scripts' as well?
entry_points={
'console_scripts': [
'assword = assword.__main__:main',
],
},
)