-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.15 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.15 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="IM_text-Adam-Hede", # Replace with your own username
version="0.0.3",
author="Adam Hede",
author_email="adhe@implement.dk",
description="A package to do basic text analysis in Danish very quickly and easily.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
packages=setuptools.find_packages(),
install_requires=[
'pandas>=0.25.1',
'wordcloud>=1.7.0',
# 'easybert>=1.0.3', Too big a requirement. Forces installs to TensorFlow 1.x
'vadersentiment>=3.2.1',
'afinn>=0.1',
'numpy>=1.17.2',
'sklearn>=0.0',
'scikit-learn>=0.21.3',
'matplotlib>=3.1.1',
'setuptools>=46.0.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)