-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 849 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 849 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
current_directory = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(current_directory, 'kuon', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
url=about['__url__'],
author=about['__author__'],
author_email=about['__author_email__'],
license=about['__license__'],
packages=find_packages(),
install_requires=[
'requests>=2.18.4',
'python-dotenv>=0.7.1',
'selenium>=3.8.1',
'bs4>=0.0.1',
'html5lib>=1.0.1',
'pyotp>=2.2.6',
'rsa>=3.4.2'
],
extras_require={
},
zip_safe=True)