-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (31 loc) · 1.09 KB
/
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
from setuptools import setup
# with open('README.md') as f:
# long_description = f.read()
setup(
name = 'redditharbor',
packages = ['redditharbor'],
version = '0.2.3',
license='MIT',
description = 'Effortlessly collect and store Reddit data in your database.',
# long_description=long_description,
long_description_content_type='text/markdown',
author = 'Nick S.H Oh',
author_email = 'research@socius.org',
url = 'https://github.com/socius-org/RedditHarbor/',
download_url = 'https://github.com/socius-org/RedditHarbor/archive/refs/tags/0.2.3.tar.gz',
keywords = ['Reddit', 'Supabase', 'reddit-api', 'database', 'reddit-crawler', 'reddit-scraper'],
include_package_data=True,
install_requires=[
'praw == 7.7.1',
'supabase == 1.0.3',
'rich == 13.4.2',
'python-dotenv == 1.0.0',
'presidio-analyzer == 2.2.351',
'presidio-anonymizer == 2.2.351',
'pillow >= 10.3.0',
'requests == 2.31.0'
],
extras_require={
'pii': ['spacy[en_core_web_lg]'],
}
)