-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (27 loc) · 1.01 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
from distutils.core import setup
setup(
name='CWiPy',
packages=['CWiPy', 'CWiPy.scripts', 'CWiPy.summary', 'CWiPy.static',
'CWiPy.static.thesaurus'],
version='0.5.5',
include_package_data=True,
license='MIT',
description='Computing with words library',
author='Aisultan Kali',
author_email='[email protected]',
url='https://github.com/akali/fuzzy',
download_url='https://github.com/akali/fuzzy/archive/0.5.5.tar.gz',
keywords=['fuzzy', 'quantifier', 'very', 'expressive', 'CWiPy', 'modifier',
'hedge', 'query', 'database'],
install_requires=[
"pandas==1.0.3",
],
classifiers=[
'Development Status :: 3 - Alpha',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
)