-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (19 loc) · 955 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name = 'dynamicargparse',
version = '1.01',
description = 'Python Dynamic Argument Parser',
author = 'Jeonghyun Joo',
author_email = '[email protected]',
packages = ['.'],
url = 'https://github.com/JeonghyunJoo/dynamic-arg-parser',
download_url = 'https://github.com/JeonghyunJoo/archive/1.0.tar.gz',
install_requires = ['PyYAML>=5.1'],
python_requires = '>=3.5',
classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)