forked from pombredanne/cypher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 721 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 721 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
from setuptools import setup
from cypher import __version__
kwargs = {
'packages': ['cypher'],
'include_package_data': True,
'name': 'cypher',
'version': __version__,
'author': 'Byron Ruth',
'author_email': 'b@devel.io',
'description': 'Neo4j Cypher compiler for building domain-specific APIs',
'license': 'BSD',
'keywords': 'neo4j cypher compiler',
'url': 'https://github.com/bruth/cypher/',
'classifiers': [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
],
}
setup(**kwargs)