-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.29 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
from setuptools import setup, find_packages
VERSION = '2.0.0'
DESCRIPTION = 'Evolutionary DBSCAN and Louvain Method with a Twitter data stream'
LONG_DESCRIPTION = open("README.md").read()
INSTALL_REQUIRES = ['numpy>=1.20.3',
'pandas>=1.2.5',
'scikit-learn>=0.24.2',
'matplotlib>=3.4.2',
'python-louvain>=0.13',
'tweepy==3.8.0',
'networkx>=2.6.1']
setup(
name="evoclusterstream",
version=VERSION,
url="https://github.com/kspurlock/EvoClusterStream",
author="Kyle Spurlock, Heba Elgazzar, Tanner Bogart",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
license='MIT',
keywords=["Unsupervised machine learning", "evolutionary clustering",
"social networks", "Python", "DBSCAN", "Louvain method",
'Twitter'],
classifiers= [
'Programming Language :: Python :: 3',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
include_package_data=True,
package_data={'':['data/*.csv']},
)