-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 829 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 829 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = ["numpy",
"sentence_transformers",
"praw",
"transformers",
"pandas",
"setuptools_rust",
"nfmodelapis"]
setuptools.setup(
name="redditflow",
version="1.0.0",
author="Abhijith Neil Abraham",
author_email="abhijithneilabrahampk@gmail.com",
description="Data Curation over Time",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
url="https://github.com/nfflow/redditflow",
install_requires=install_requires,
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True
)