blob: c4e0ee9731932b4de9355d36a2e7e7a48ae0da74 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from setuptools import setup, find_packages
setup(
name = 'blog',
version = '1.0',
packages = find_packages();
include_package_data = True,
install_requires = [],
license = 'AGPLv3',
)
|