forked from bachew/gpgedit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (43 loc) · 1.31 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
# -*- coding: utf-8 -*-
from glob import glob
from os import path as osp
from setuptools import setup, find_packages
proj_dir = osp.dirname(__file__)
modules = [osp.splitext(osp.basename(path))[0]
for path in glob(osp.join(proj_dir, 'src/*.py'))]
desc = 'GpgEdit lets you edit a gpg-encrypted file'
config = {
'name': 'gpgedit',
'version': '0.0.8',
'description': desc,
'long_description': desc,
'license': 'MIT',
'author': 'Chew Boon Aik',
'author_email': '[email protected]',
'url': 'https://github.com/bachew/gpgedit',
'download_url': 'https://github.com/bachew/gpgedit/archive/master.zip',
'packages': find_packages('src'),
'package_dir': {'': 'src'},
'py_modules': modules,
'install_requires': [
'click>=6.7',
'gevent>=1.2.2',
],
'entry_points': {
'console_scripts': [
'gpgedit=gpgedit:cli',
],
},
'zip_safe': False,
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
],
}
setup(**config)