-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.24 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.24 KB
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
from pathlib import Path
import setuptools
AUTHOR = 'SD4RK'
VERSION = '0.2.0'
long_description = Path("README.md").read_text()
setuptools.setup(
name='epicstore_api',
version=VERSION,
author=AUTHOR,
description='An API wrapper for Epic Games Store written in Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/SD4RK/epicstore_api',
license='MIT',
include_package_data=True,
install_requires=['cloudscraper>=1.2.71'],
download_url=f'https://github.com/SD4RK/epicstore_api/archive/v_{VERSION}.tar.gz',
packages=setuptools.find_packages(),
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
python_requires='>=3.7',
)