-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 984 Bytes
/
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
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='NetLSD',
version='1.0.2',
author='Anton Tsitsulin',
author_email='[email protected]',
description='NetLSD descriptors for graphs. Compare and analyze graph structure on multiple levels!',
packages=['netlsd',],
url='http://github.com/xgfs/netlsd',
download_url = 'https://github.com/xgfs/netlsd/archive/0.1.tar.gz',
license='MIT',
install_requires=[
'numpy',
'scipy'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
long_description=open('README.rst').read(),
)