-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 765 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 765 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
27
28
29
30
31
32
33
#!/usr/bin/env python
# coding=utf8
"""
# Author: penfree
# Created Time : 03 Mar 2022 07:23:45 PM CST
# File Name: setup.py
# Description:
"""
from setuptools import setup, find_packages
import os
if os.path.exists('requirements.txt'):
requirements = [x.strip() for x in open("requirements.txt").readlines()]
else:
requirements = []
version = "0.1"
# Create build meta
setup(
name="pywebargparse",
version=version,
author="penfree",
url="https://github.com/penfree/webargparse",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
description="This is a tool to create an web ui from argparse script",
long_description='',
classifiers=['Programming Language :: Python :: 3.8']
)