-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.17 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
from setuptools import setup
VERSION = '0.1.5' # change this for new version to PyPi through GH Actions
setup(
name='qualkit',
version=VERSION,
packages=['qualkit'],
url='https://github.com/JiscDACT/qualkit',
download_url='https://github.com/JiscDACT/qualkit/tarball/{}'.format(VERSION),
license='BSD',
author='Scott Wilson',
author_email='[email protected]',
description='Python qualitative analysis toolkit with utilities and simplified wrappers for common algorithms',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=['pandas>=1.1.5',
'numpy>=1.19.5',
'nltk>=3.6.2',
'scikit-learn>=0.24.2',
'corextopic>=1.1'],
entry_points={
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
]
)