-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 704 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 704 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
from setuptools import setup, find_packages
from PyQQSkeyTool.constant import AUTHOR,VERSION,EMAIL
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='PyQQSkeyTool',
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=long_description,
url='https://github.com/sun589/PyQQSkeyTool',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
'requests>=2.25.1',
'urlextract>=1.6.0'
],
python_requires='>=3.6'
)