2014-07-12 01:22:00 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'BMC',
|
2014-10-11 23:19:32 +02:00
|
|
|
version = "0.3dev",
|
2014-07-12 01:22:00 +02:00
|
|
|
url = "https://github.com/Phyks/BMC",
|
|
|
|
author = "",
|
|
|
|
license = "no-alcohol beer-ware license",
|
|
|
|
author_email = "",
|
|
|
|
description = "simple script to download and store your articles",
|
|
|
|
packages = ['libbmc'],
|
|
|
|
scripts = ['bmc.py'],
|
|
|
|
)
|