1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='confman',
version='0.3.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.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
|