-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
29 lines (25 loc) · 844 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
28
29
#!/usr/bin/env python
from setuptools import setup
from os.path import abspath, dirname, join
def readfile(filename):
path = join(dirname(abspath(__file__)), filename)
with open(path, 'rt') as filehandle:
return filehandle.read()
setup(
name='pip_install_privates',
version='0.6.4',
description='Install pip packages from private repositories without an ssh agent',
long_description=readfile('README.rst'),
long_description_content_type='text/x-rst',
author='Byte Internet',
author_email='tech@byte.nl',
license='MIT',
url='/~https://github.com/ByteInternet/pip-install-privates',
packages=['pip_install_privates'],
install_requires=['pip'],
entry_points={
'console_scripts': [
'pip_install_privates = pip_install_privates.install:install'
]
}
)