-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 861 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '0.0.4'
LONG_DESCRIPTION = open('README.rst').read()
setup(name='overlay4u',
version=VERSION,
description='overlay4u',
long_description=LONG_DESCRIPTION,
keywords='overlayfs',
author='Reuven V. Gonzales',
author_email='[email protected]',
url='https://github.com/ravenac95/overlay4u',
license='MIT',
platforms='Ubuntu',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'subwrap',
],
entry_points={},
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: POSIX',
'Topic :: Software Development :: Build Tools',
],
)