forked from MI2DataLab/WildNLP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 786 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
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="wild-nlp",
version="1.0.1",
author="Dominika Basaj, Barbara Rychalska, Alicja Gosiewska, Adam Słucki",
author_email="[email protected]",
description=("Text aspects for nlp models"),
license="BSD",
url="https://github.com/MI2DataLab/WildNLP",
packages=find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Text Processing",
"License :: OSI Approved :: BSD License",
],
install_requires=[
'numpy',
'num2words'
]
)