-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 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
30
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for wordfeudbot."""
from setuptools import setup
import os
setup(
name='wordfeudbot',
version='', # Set new version
author="Pricehacker",
author_email="[email protected]",
description="A python script that automates the game of wordfeud",
url="https://github.com/Pricehacker/wordfeud-bot",
license='MIT',
include_package_data=True,
packages=["wordfeudbot", "wordfeudbot/wordfeud_logic"],
entry_points={
"console_scripts": [
"wordfeudbot = wordfeudbot.main:main",
]
},
install_requires=[ # I get to this in a second
'coloredlogs',
'emoji',
'requests',
'urllib3',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)