14 lines
366 B
Python
14 lines
366 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='linuxapi',
|
|
version='1.1',
|
|
description='Pure Python bindings for Linux standard library features',
|
|
author='Dustin C. Hatch',
|
|
author_email='dustin.hatch@firemon.com',
|
|
url='https://www.firemon.com/',
|
|
license='GPL-2',
|
|
packages=find_packages('src'),
|
|
package_dir={'': 'src'},
|
|
)
|