2014-07-12 01:22:00 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'BMC',
|
2016-01-24 00:17:28 +01:00
|
|
|
version = "0.4",
|
2014-07-12 01:22:00 +02:00
|
|
|
url = "https://github.com/Phyks/BMC",
|
2016-01-24 00:17:28 +01:00
|
|
|
author = "Phyks (Lucas Verney)",
|
|
|
|
license = "MIT License",
|
|
|
|
author_email = "phyks@phyks.me",
|
|
|
|
description = "Simple script to download and store your articles",
|
|
|
|
# TODO
|
2014-07-12 01:22:00 +02:00
|
|
|
packages = ['libbmc'],
|
|
|
|
scripts = ['bmc.py'],
|
|
|
|
)
|