-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 979 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import easyaerospike
setup(
name='easyaerospike',
version=easyaerospike.__version__,
description='Work easier with Aerospike in Python',
url='https://github.com/catenae/easyaerospike',
author='Rodrigo Martínez Castaño',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
packages=['easyaerospike'],
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=['aerospike==3.9.0']) # Dependencies