|
1 | 1 | import setuptools |
2 | 2 |
|
3 | 3 | setuptools.setup( |
4 | | - name = 'WS-API', |
5 | | - packages = ['ws_api'], |
6 | | - version = '0.28.1', |
7 | | - license = 'GPL-3.0', |
8 | | - description = 'Access your Wealthsimple account using their (GraphQL) API.', |
9 | | - author = 'Guillaume Boudreau', |
10 | | - author_email = 'guillaume@pommepause.com', |
11 | | - url = 'https://github.com/gboudreau/ws-api-python', |
12 | | - keywords = ['wealthsimple'], |
13 | | - python_requires='>=3.10', |
14 | | - install_requires = [ |
15 | | - 'requests', |
| 4 | + name="WS-API", |
| 5 | + packages=["ws_api"], |
| 6 | + version="0.28.1", |
| 7 | + license="GPL-3.0", |
| 8 | + description="Access your Wealthsimple account using their (GraphQL) API.", |
| 9 | + author="Guillaume Boudreau", |
| 10 | + author_email="guillaume@pommepause.com", |
| 11 | + url="https://github.com/gboudreau/ws-api-python", |
| 12 | + keywords=["wealthsimple"], |
| 13 | + python_requires=">=3.10", |
| 14 | + install_requires=[ |
| 15 | + "requests", |
16 | 16 | ], |
17 | | - classifiers = [ |
18 | | - 'Development Status :: 3 - Alpha', |
19 | | - 'Intended Audience :: Developers', |
20 | | - 'Operating System :: OS Independent', |
21 | | - 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', |
22 | | - 'Programming Language :: Python :: 3', |
23 | | - "Programming Language :: Python :: 3.13" |
| 17 | + classifiers=[ |
| 18 | + "Development Status :: 3 - Alpha", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "Operating System :: OS Independent", |
| 21 | + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.13", |
24 | 24 | ], |
25 | 25 | ) |
0 commit comments