-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
executable file
·44 lines (42 loc) · 1.6 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup
with open('requirements.txt', 'r') as fh:
dependencies = [l.strip() for l in fh]
setup(name='upass',
version='0.3.0',
description='Console UI for pass.',
keywords='upass',
author='Chris Warrick',
author_email='[email protected]',
url='https://github.com/Kwpolska/upass',
license='3-clause BSD',
long_description=io.open('./docs/README.rst', 'r', encoding='utf-8').read(),
platforms='any',
zip_safe=False,
include_package_data=True,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'],
packages=['upass'],
install_requires=dependencies,
extras_require={
':python_version == "2.7"': ['configparser']
},
entry_points={
'console_scripts': [
'upass = upass.__main__:main',
]
},
)