aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: a14a6c6beb76e1f46de2c71d7caa58d6233e239f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
import dotfiles

setup(name='dotfiles',
      version=dotfiles.__version__,
      description='Easily manage your dotfiles',
      long_description=open('README.rst').read(),
      author='Jon Bernard',
      author_email='jbernard@tuxion.com',
      url='https://github.com/jbernard/dotfiles',
      packages=['dotfiles'],
      license='GPL',
      classifiers=(
          'Development Status :: 4 - Beta',
          'Environment :: Console',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: GNU General Public License (GPL)',
          'Natural Language :: English',
          'Programming Language :: Python',
      ),
      scripts=['bin/dotfiles'],
)