blob: 309e7d24d4cf75ecb015f71d54ef5537d5b6df7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='confman',
version='0.1',
description='Lazy, rootless, yet powerful config file management mostly using symlinks',
long_description=open('README').read(),
author='Laurent Bachelier',
author_email='laurent@bachelier.name',
url='http://git.p.engu.in/laurentb/confman/',
py_modules=['confman'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
],
)
|