-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·31 lines (27 loc) · 997 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
30
31
#!/usr/bin/env python
import setuptools
from distutils.core import setup
expvar = __import__('expvar')
kwargs = {
"name": "expvar",
"version": str(expvar.__version__),
"packages": ["expvar"],
"description": "Store and retrieve TOTP secrets/tokens.",
# PyPi, despite not parsing markdown, will prefer the README.md to the
# standard README. Explicitly read it here.
"long_description": open("README").read(),
"author": "Gary M. Josack",
"maintainer": "Gary M. Josack",
"author_email": "gary@byoteki.com",
"maintainer_email": "gary@byoteki.com",
"license": "MIT",
"url": "https://github.com/gmjosack/expvar",
"download_url": "https://github.com/gmjosack/expvar/archive/master.tar.gz",
"classifiers": [
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
}
setup(**kwargs)