-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (39 loc) · 1.24 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import re
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as f:
readme = f.read()
with open('gforms/__init__.py', encoding='utf-8') as f:
version = re.search(r"__version__ = '(.+)'", f.read()).group(1)
setup(
name='gforms',
description='Google Forms wrapper for Python',
long_description=readme,
long_description_content_type='text/markdown',
author='vvd170501',
url='https://github.com/vvd170501/python-gforms',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=['gforms'],
version=version,
license_files=('LICENSE',),
python_requires='>=3.6',
install_requires=[
'beautifulsoup4',
'requests',
"typing-extensions;python_version<'3.8'",
],
extras_require={
'dev': [
'pytest',
]
},
)