-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.33 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import pathlib
here = pathlib.Path(__file__).parent.resolve()
VERSION = '0.0.1'
DESCRIPTION = 'EA FC 24 FUT players scraper'
LONG_DESCRIPTION = (here / "README.md").read_text(encoding="utf-8")
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="eafc24-ut-players",
version=VERSION,
author="Bartlomiej Niemiec",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
url="https://github.com/bartlomiej-niemiec/fut-players",
packages=find_packages(where="src"),
install_requires=[
"requests",
"beautifulsoup4",
"tqdm",
"pandas"
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'eafc24', 'futwiz', 'ultimate team', 'file logging',
'multithreading', 'webscraping', 'proxy servers'],
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.12",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
package_dir={"": "src"},
)