-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (29 loc) · 959 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
# setup.py
#
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name = 'graphpca',
packages = ['graphpca'],
version = '1.1.1',
license = 'Apache License 2.0',
description = 'Produces a low-dimensional representation of the input graph',
long_description=(read('README.rst')),
long_description_content_type='text/x-rst',
author = 'Brandon Istenes',
author_email = '[email protected]',
install_requires=[
'networkx',
'numpy',
'scipy'
],
url = 'https://github.com/brandones/graphpca',
download_url = 'https://github.com/brandones/graphpca/tarball/0.5',
keywords = ['graph', 'draw', 'pca', 'data', 'reduction', 'dimension', 'compression'],
classifiers = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License']
)