generated from nikosavola/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 885 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="Plaseerausbotti",
version=0.1,
description="Telegram bot for seating academic dinner parties (sitsit)",
long_description=read('README.md'),
author="Fyysikkokilta",
author_email="[email protected]",
url="https://github.com/fyysikkokilta/Plaseerausbotti",
packages=['plaseerausbotti'],
python_requires=">=3.6.9,<3.11",
install_requires=[
"matplotlib~=3.4",
"networkx~=2.6",
"numpy~=1.21",
"python-telegram-bot~=13.7",
"thefuzz[speedup]~=0.19",
],
extras_require={
"test": [
"pytest>=6.1",
"pytest-sugar>=0.9",
"pytest-cov>=2.12",
"pytest-xdist>=2.3",
"pylint>=2.9"
],
},
)