-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
37 lines (32 loc) · 1.07 KB
/
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
36
from setuptools import setup, find_packages
#next time:
#python setup.py register
#python setup.py sdist upload
version = "0.1.1"
long_desc = """
Experimental Python RexPro interface
"""
setup(
name='rexpro',
version=version,
description='Python RexPro interface',
dependency_links=['https://github.com/bdeggleston/rexpro-python/archive/{0}.tar.gz#egg=rexpro-python-{0}'.format(version)],
long_description=long_desc,
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
'Topic :: Database',
'Topic :: Database :: Front-Ends',
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='rexster,tinkerpop,rexpro',
install_requires=['msgpack-python'],
author='Blake Eggleston',
author_email='bdeggleston@gmail.com',
url='https://github.com/bdeggleston/rexpro-python',
license='BSD',
packages=find_packages(),
include_package_data=True,
)