-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 925 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (30 loc) · 925 Bytes
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
# -*- coding: utf-8 -*-
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='DGSD',
version='v1.0.4',
author='Anwar Said',
author_email='anwar.said@itu.edu.pk',
description='DGSD: Distributed Graph Representation via Graph Statistical Properties!',
long_description='long_description',
packages=['dgsd',],
url='https://github.com/Anwar-Said/DGSD',
download_url = 'https://github.com/Anwar-Said/DGSD/archive/v1.0.4.tar.gz',
license='MIT',
install_requires=[
'numpy',
'networkx==2.5'
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)