-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
47 lines (42 loc) · 1.43 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
try:
from setuptools import setup
assert setup
except ImportError:
from distutils.core import setup
import onepassword
def read_requirements(filename):
reqs = []
with open(filename, 'r') as f:
for line in f:
reqs.append(line.strip())
return reqs
setup(
name="onepasswordpy",
version=onepassword.__version__,
provides=["onepassword"],
author="James Brown",
author_email="[email protected]",
url="http://github.com/Roguelazer/onepasswordpy",
description='Python tools for reading 1Password data files',
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
"Operating System :: OS Independent",
"License :: OSI Approved :: ISC License (ISCL)",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
],
install_requires=read_requirements('requirements.txt'),
tests_require=read_requirements('requirements-tests.txt'),
packages=[
'onepassword',
],
long_description="""onepasswordpy is a simple python library for
manipulating datafiles from the 1Password password management utility
(https://agilebits.com/onepassword). It is in no way associated with
AgileBits, Inc."""
)