-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 868 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
from setuptools import setup, find_packages
setup(
name="nitter",
version="0.0.1",
description="Nitter notification tools",
url="https://github.com/manslaughter03/nitter-notification",
author="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Twitter Tools',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
python_requires='>=3.5',
packages=find_packages(),
package_data={'nitter': ['resources/*.png']},
install_requires=[
"PyYAML==5.3.1",
"lxml==4.6.1",
"requests==2.25.0",
"sdnotify==0.3.2"
]
)