-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 765 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'''
Created on September 19, 2016
@author: David Stocker
'''
from setuptools import setup, find_packages
setup(
name = 'graphyne',
packages = find_packages(),
version = '1.2.3',
description = "A fully native Python 'smart graph' property graph database. It is designed to be easy to integrate into your Python projects, simple to use and very powerful.",
author = 'David Stocker',
author_email = 'mrdave991@gmail.com',
url = 'https://github.com/davidhstocker/Graphyne',
download_url = 'https://github.com/davidhstocker/Graphyne/raw/master/dist/graphyne-1.2.3-py3-none-any.whl',
keywords = ['graph', 'propertygraph', 'property graph', 'graphdatabase', 'graph database', 'smart graph', 'smartgraph'],
install_requires=[],
classifiers = [],
)