-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (23 loc) · 872 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
import os
from setuptools import setup, find_packages
VERSION = "0.1.4__dev_version__"
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
def readme():
with open(os.path.join(THIS_DIR, "README.md"), encoding="utf-8") as f:
return f.read()
with open(os.path.join(THIS_DIR, "requirements.txt")) as f:
requirements = f.read().splitlines()
setup(
name="SentiLeak",
version=VERSION,
install_requires=requirements,
author="FernanOrtega",
author_email="[email protected]",
description="A lexicon-based sentiment analysis for Spanish.",
long_description=readme(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["test"]),
include_package_data=True,
license="License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
url="https://github.com/FernanOrtega",
)