forked from mkst/zte-config-utility
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (22 loc) · 644 Bytes
/
setup.py
File metadata and controls
27 lines (22 loc) · 644 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
"""setup.py module installer"""
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
with open('LICENSE') as f:
LICENSE = f.read()
with open('VERSION') as f:
VERSION = f.read()
with open('requirements.txt') as f:
REQUIRED = f.read()
setup(
name='zcu',
version=VERSION,
description='ZTE Configuration Utility',
long_description=README,
author='Mark Street',
author_email='mkst@protonmail.com',
url='https://github.com/streetster/zte-config-utility',
license=LICENSE,
install_requires=REQUIRED,
packages=find_packages(exclude=('tests', 'docs'))
)