-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 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
33
from setuptools import setup
setup(
name='smpa-murphy',
packages=['murphy'],
version='1.0.0-alpha.1',
license='MIT',
description='Murpheus is a powerful processor that is used to analyze a ton of twitter data from the internet archive.',
long_description="""# Murpheus\n\n* Murpheus is a powerful processor that is used to analyze a ton of twitter data from the internet archive""",
long_description_content_type="text/markdown",
author='Ali Abbas',
author_email='[email protected]',
url='https://github.com/Social-Media-Public-Analysis/murpheus',
download_url='https://github.com/Social-Media-Public-Analysis/murpheus/archive/v1.0.0-alpha.1.tar.gz',
keywords=['DASK', 'BIG DATA', 'MACHINE LEARNING'],
install_requires=[
'tqdm',
'numpy',
'pandas',
'dask[complete]',
'nltk',
'pytest',
'pyfiglet',
'emoji'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)