forked from davedoesdev/dxf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 700 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup
def read(name):
return open(os.path.join(os.path.dirname(__file__), name)).read()
setup(
name='python-dxf',
version='7.4.0',
description="Package for accessing a Docker v2 registry",
long_description=read('README.rst'),
keywords='docker registry',
author='David Halls',
author_email='dave@davedoesdev.com',
url='https://github.com/davedoesdev/dxf',
license='MIT',
packages=['dxf'],
entry_points={'console_scripts': ['dxf=dxf.main:main']},
install_requires=['www-authenticate>=0.9.2',
'requests>=2.18.4',
'jwcrypto>=0.4.2',
'tqdm>=4.19.4']
)