forked from antonioparraga/braviarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup_pip.py
26 lines (24 loc) · 901 Bytes
/
setup_pip.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
# pylint: disable=invalid-name, exec-used
"""Setup braviarc package."""
from __future__ import absolute_import
import sys
import os
from setuptools import setup, find_packages
# import subprocess
sys.path.insert(0, '.')
CURRENT_DIR = os.path.dirname(__file__)
# to deploy to pip, please use
# make pythonpack
# python setup.py register sdist upload
# and be sure to test it firstly using "python setup.py register sdist upload -r pypitest"
setup(name='braviarc',
# version=open(os.path.join(CURRENT_DIR, 'xgboost/VERSION')).read().strip(),
version='0.3.7',
description=open(os.path.join(CURRENT_DIR, 'README.md')).read(),
install_requires=['requests'],
maintainer='Antonio Parraga',
maintainer_email='[email protected]',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
url='https://github.com/aparraga/braviarc.git')