-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
38 lines (33 loc) · 1.19 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup, find_packages
# load in the project metadata
init_py = open(os.path.join("bacpypes3", "__init__.py")).read()
metadata = dict(re.findall("""__([a-z]+)__ = ["]([^"]+)["]""", init_py))
requirements = []
setup(
name="bacpypes3",
version=metadata["version"],
description="BACnet Communications Library",
long_description="BACpypes3 provides a BACnet application layer and network layer written in Python3 for daemons, scripting, and graphical interfaces.",
long_description_content_type="text/x-rst",
author=metadata["author"],
author_email=metadata["email"],
url="https://github.com/JoelBender/bacpypes3",
packages=find_packages(),
package_data={"bacpypes3": ["py.typed"]},
include_package_data=True,
install_requires=requirements,
license="MIT",
zip_safe=False,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
)