forked from michelevantini/LargeGraphStatistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (30 loc) · 1.08 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 setuptools import setup
setup(
name="dmproject",
packages=["dmproject"],
version="0.0.1.dev1",
description="Algorithmic Methods of Data Mining - Final Project",
author="Fabio Colella, Michele Vantini",
author_email="fabio.colella@aalto.fi, michele.vantini@aalto.fi",
url="https://github.com/michelevantini/DMproject",
download_url="https://github.com/michelevantini/DMproject",
keywords=["graph", "algorithms", "data", "mining"],
classifiers=[
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research"
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
],
long_description="""\
Algorithmic Methods of Data Mining - Final Project
""",
install_requires=['matplotlib',
'networkx',
'numpy'],
python_requires='>=3.4'
)