-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·90 lines (81 loc) · 3.06 KB
/
setup.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python3
#
# Copyright (c) 2020 Google LLC.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
# @file
# Script for building the openweave-tlv-schema source distribution.
#
import os
from datetime import datetime
import getpass
from setuptools import setup
packageName = 'openweave-tlv-schema'
packageVer = '1.0'
# Allow package name to be overridden in the environment.
packageName = os.environ.get('PACKAGE_NAME', packageName)
# Allow package version to be overridden in the environment.
packageVer = os.environ.get('PACKAGE_VERSION', packageVer)
# If building under Travis, assume that this is a developer version, and use
# the Travis build number as the development version number.
if 'TRAVIS_BUILD_NUMBER' in os.environ:
packageVer = '%s.dev%s' % (packageVer, os.environ['TRAVIS_BUILD_NUMBER'])
# Generate a description string with information on how/when the package
# was built.
if 'TRAVIS_BUILD_NUMBER' in os.environ:
buildDescription = 'Built by Travis CI on %s\n- Build: %s/#%s\n- Build URL: %s\n- Branch: %s\n- Commit: %s\n' % (
datetime.now().strftime('%Y/%m/%d %H:%M:%S'),
os.environ['TRAVIS_REPO_SLUG'],
os.environ['TRAVIS_BUILD_NUMBER'],
os.environ['TRAVIS_BUILD_WEB_URL'],
os.environ['TRAVIS_BRANCH'],
os.environ['TRAVIS_COMMIT'])
else:
buildDescription = 'Built by %s on %s\n' % (
getpass.getuser(),
datetime.now().strftime('%Y/%m/%d %H:%M:%S'))
setup(
name=packageName,
version=packageVer,
description='Python-based libraries and tools for working with Weave TLV schemas.',
long_description=buildDescription,
author='Google LLC',
url='https://github.com/openweave/openweave-tlv-schema',
license='Apache',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6',
packages=[
'openweave.tlv.schema',
'openweave.tlv.schema.tests',
],
package_data={
'openweave.tlv.schema':[
'tlv-schema-ebnf.txt',
'LICENSE.txt'
]
},
scripts=[
'weave-tlv-schema' # Install the TLV schema tool as an executable script in the 'bin' directory.
],
install_requires=[
'lark-parser'
],
)