-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 763 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 763 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
__author__ = "Adrien Lescourt"
__copyright__ = "HES-SO 2014, Project EMG4B"
__credits__ = ["Adrien Lescourt"]
__version__ = "1.0.2"
__email__ = "adrien.lescourt@gmail.com"
__status__ = "Prototype"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="knxnet",
version="1.0.2",
author="Adrien Lescourt",
author_email="adrien.lescourt@gmail.com",
description="Knxnet datagram frame creator / handler",
license="HES-SO 2015, Project EMG4B",
keywords="KNX",
packages=['knxnet', 'tests'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
],
)