-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 941 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
36
37
#!/usr/bin/env python
from setuptools import setup, find_packages
desc = """StoryGraph Bot (description coming...)"""
__appversion__ = None
#__appversion__, defined here
exec(open('storygraph_bot/version.py').read())
setup(
name='storygraph_bot',
version=__appversion__,
description=desc,
long_description='See: https://github.com/oduwsdl/storygraphbot',
author='Kritika Garg and Alexander C. Nwala',
author_email='kgarg.kritika@gmail.com',
url='https://github.com/oduwsdl/storygraphbot',
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
'beautifulsoup4',
'NwalaTextUtils',
'pytest-playwright',
'requests',
'urllib3<2.0'
],
scripts=[
'bin/sgbot'
]
)