forked from ponycloud/python-sysfs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 648 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 648 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
#!/usr/bin/python -tt
from setuptools import setup
setup(
name="python-sysfs",
version="0.0.2",
author="user2245775",
description=("simple sysfs interface"),
license="MIT",
keywords="system sysfs",
url="http://github.com/simontegelid/python-sysfs",
packages=["sysfs"],
project_urls={
"Original source": "https://stackoverflow.com/a/19330692/10901939",
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: System",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)
# vim:set sw=4 ts=4 et:
# -*- coding: utf-8 -*-