-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 785 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 785 Bytes
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
import io
import os
from setuptools import setup
def read(name):
file_path = os.path.join(os.path.dirname(__file__), name)
return io.open(file_path, encoding='utf8').read()
setup(
name='python-dxf',
version='12.1.1',
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'],
package_data={"dxf": ["py.typed"]},
entry_points={'console_scripts': ['dxf=dxf.main:main']},
install_requires=['www-authenticate>=0.9.2',
'requests>=2.18.4',
'tqdm>=4.19.4'],
python_requires='>=3.8'
)