-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.41 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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
"""
:py:mod:`setup` --- Setuptools script
=====================================
Provides setuptools needed script in order manage pip install
.. module:: setup
:synopsis: setuptools script
.. moduleauthor::Rafael Durán Castañeda <[email protected]>
"""
import os
import bvoxextension
from setuptools import setup, find_packages
GITHUB_URL = 'https://github.com/bvox/keystone-bvox-extension'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="bvoxextension",
packages=find_packages(),
install_requires=('keystone',),
version=bvoxextension.__version__,
description="BVOX's Keystone extension",
author="Rafael Durán Castañeda",
author_email="[email protected]",
license='Other/Proprietary License',
url=GITHUB_URL,
download_url="%s/tarball/%s" % (GITHUB_URL, bvoxextension.__version__),
keywords=["Openstack", "Keystone", "API", "Extension"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
'License :: Other/Proprietary License',
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = read("README.rst"))