-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 915 Bytes
/
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
from setuptools import find_packages, setup
setup(
# Application name:
name="pyd2bot",
# Version number (initial):
version=open("./VERSION").read(),
# Application author details:
author="majdoub khalid",
author_email="[email protected]",
# Packages
packages=find_packages(),
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/hadamrd/pyd2bot",
#
# license="LICENSE.txt",
description="Python bot that uses pydofus2 as a background client.",
long_description=open("README.md").read(),
# Dependent packages (distributions)
install_requires=open("./requirements.txt").readlines(),
classifiers=[
"Programming Language :: Python :: 3.9.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Windows",
],
python_requires="<=3.9.13",
)