-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (49 loc) · 1.59 KB
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
"""keyutil package installation script"""
from setuptools import setup, find_packages
def readme():
with open("README.rst") as f:
return f.read()
setup(
name="keyutil",
version="0.1.0",
url="http://github.com/lukassup/keyutil",
description=("utility to generate SECRET_KEYs for securing "
"session data"),
long_description=readme(),
author="Lukas Šupienis",
author_email="lukas.supienis@gmail.com",
keywords="python cli keyutil secret django flask",
license="BSD",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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 :: Implementation :: CPython",
"Topic :: Utilities",
],
packages=find_packages(exclude=["tests"]),
install_requires=[
"docutils >=0.10",
"six ==1.10",
],
tests_require=[
'nose',
],
test_suite="nose.collector",
zip_safe=True,
entry_points={
'console_scripts': [
'keyutil=keyutil.keyutil:main',
],
},
)