-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (43 loc) · 1.46 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
# -*- coding: utf-8 -*-
"""setup.py: setuptools control."""
import re
from setuptools import setup,find_packages
projectName="clipwdmgr"
scriptFile="%s/%s.py" % (projectName,projectName)
description="Command Line Password Manager."
version = re.search(
'^__version__\s*=\s*"(.*)"',
open(scriptFile).read(),
re.M
).group(1)
with open("README.rst", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = projectName,
#include source dirs here
packages = [projectName,"%s/commands" % projectName,"%s/crypto" % projectName,"%s/database" % projectName,"%s/utils" % projectName],
entry_points = {
"console_scripts": ['%s = %s.%s:main' % (projectName,projectName,projectName)]
},
version = version,
description = description,
long_description = long_descr,
install_requires = ['cryptography','pyperclip'],
author = "Sami Salkosuo",
author_email = "dev@rnd-dev.com",
url = "https://github.com/samisalkosuo/clipasswordmgr",
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Utilities"
],
)