-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (31 loc) · 1.15 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
34
35
"""Setup for the LeXmo package."""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Dina Bavli",
author_email="[email protected]",
name='LeXmo',
license="Attribution-NonCommercial 4.0 International",
description='LeXmo is a python package for emotion classification.',
version='v0.1.4',
long_description=README,
url='https://github.com/dinbav/LeXmo',
packages=setuptools.find_packages(),
python_requires=">=3.5",
install_requires=["pandas","nltk", "requests"],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
],
)