add setup.py
This commit is contained in:
parent
c23564d48d
commit
e324432d0c
1 changed files with 23 additions and 0 deletions
23
setup.py
Executable file
23
setup.py
Executable file
|
|
@ -0,0 +1,23 @@
|
|||
#! /usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
try:
|
||||
from setuptools import setup, find_packages
|
||||
except ImportError:
|
||||
from ez_setup import use_setuptools
|
||||
use_setuptools()
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
import os
|
||||
|
||||
setup(
|
||||
name='Weboob',
|
||||
version='0.1',
|
||||
description='Weboob, web out of the browser',
|
||||
author='Romain Bignon',
|
||||
author_email='',
|
||||
license='GPLv3',
|
||||
url='',
|
||||
packages=find_packages(exclude=['ez_setup']),
|
||||
# scripts=[os.path.join('scripts', script) for script in os.listdir('scripts')],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue