-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·55 lines (45 loc) · 1.34 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
#!/usr/bin/env python3
#
# Setup
#
"""Setup"""
# Standard packages
import setuptools
import os
package_root = os.path.abspath(os.path.dirname(__file__))
# Version
version = {}
with open(os.path.join(package_root, "batspp/__version__.py")) as fp:
exec(fp.read(), version)
version = version["__version__"]
# Readme
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# Requirements
with open('requirements/production.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="batspp",
version=version,
author="Bruno Daniel Lima",
author_email="bdl1998@hotmail.com",
description="Shell style tests using bats-core",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LimaBD/batspp",
project_urls={
"Bug Tracker": "https://github.com/LimaBD/batspp/issues",
},
license='GNU Lesser General Public License v3 (LGPLv3)',
license_files="LICENSE.txt",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
scripts=['batspp/batspp'],
packages=['batspp'],
python_requires=">=3.8",
install_requires=required,
package_data={'': ['*.bash']},
)