forked from jleclanche/python-bna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (25 loc) · 793 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from distutils.core import setup
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: Security :: Cryptography",
]
setup(
name = "python-bna",
py_modules = ["bna"],
author = "Jerome Leclanche",
author_email = "[email protected]",
classifiers = CLASSIFIERS,
description = "Battle.net Authenticator routines in Python.",
download_url = "https://github.com/Adys/python-bna/tarball/master",
long_description = README,
url = "https://github.com/Adys/python-bna",
version = "2.0",
)