Total Complexity | 0 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/python |
||
2 | # -*- coding: utf-8 -*- |
||
3 | import os |
||
4 | |||
5 | from setuptools import setup, find_packages |
||
6 | |||
7 | current_directory = os.path.abspath(os.path.dirname(__file__)) |
||
8 | |||
9 | about = {} |
||
10 | with open(os.path.join(current_directory, 'kuon', '__version__.py'), 'r') as f: |
||
11 | exec(f.read(), about) |
||
12 | |||
13 | setup(name=about['__title__'], |
||
14 | version=about['__version__'], |
||
15 | description=about['__description__'], |
||
16 | url=about['__url__'], |
||
17 | author=about['__author__'], |
||
18 | author_email=about['__author_email__'], |
||
19 | license=about['__license__'], |
||
20 | packages=find_packages(), |
||
21 | install_requires=[ |
||
22 | 'requests>=2.18.4', |
||
23 | 'python-dotenv>=0.7.1', |
||
24 | 'selenium>=3.8.1', |
||
25 | 'bs4>=0.0.1', |
||
26 | 'html5lib>=1.0.1', |
||
27 | 'pyotp>=2.2.6', |
||
28 | 'rsa>=3.4.2' |
||
29 | ], |
||
30 | extras_require={ |
||
31 | }, |
||
32 | zip_safe=True) |
||
33 |