-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.16 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="Physical2FA", # Replace with your own username
version="1.1.0",
author="Atharv2",
author_email="[email protected]",
description="Encryption using 2 Factor Authentication through an external drive.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Atharv2/Physical2FA",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Security :: Cryptography",
"Topic :: Security",
],
python_requires='>=3.0',
)