-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 583 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 583 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import find_packages, setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='ArmaRconDiscordBot',
version='0.0.1',
packages=find_packages(exclude=['tests']), # Include all the python modules except `tests`.
description='ArmaRconDiscordBot to manage Arma 3 servers with discord',
long_description='An open source tool to manage servers with Rcon via Discord',
install_requires=required,
classifiers=[
'Programming Language :: Python',
],
entry_points={
'pytest11': []
},
)