-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (40 loc) · 1.49 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
36
37
38
39
40
from distutils.core import setup
setup(
name='writeprints',
packages=['writeprints'],
version='0.2.0',
license='MIT',
description='This package extracts writeprints features from a text document or a pandas dataframe containing a column with text per row',
author='Shaoor Munir',
author_email='[email protected]',
url='https://github.com/shaoormunir/writeprints',
download_url='https://github.com/shaoormunir/writeprints/archive/v0.2.1.tar.gz',
keywords=['NLP', 'Machine Leanrning',
'Natural Language Processing', 'Text Features'],
install_requires=[
'nltk',
'spacy',
'numpy',
'sortedcontainers',
'keras',
'pandas',
'tensorflow',
'tqdm',
],
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
# Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['writeprintresources/*.txt'],
},
)