-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (24 loc) · 751 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (24 loc) · 751 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name = 'abi2doc',
description = 'Linux Kernel sysfs attribute documentation generator',
long_description = readme(),
packages = ['abi2doc'],
include_package_data=True,
version = '1.6',
author = 'Aishwarya Pant',
author_email = 'aishpant@gmail.com',
license = 'GPLv2',
python_requires = '>=3',
url = 'https://github.com/aishpant/attribute-documentation',
download_url = 'https://github.com/aishpant/attribute-documentation/archive/1.6.tar.gz',
keywords = 'documentation sysfs linux',
entry_points={
'console_scripts': [
'abi2doc=abi2doc.doc:document',
],
},
)