aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: d12fd4c8f8019ab87f5ca87b0c1225ab78cb0f14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from io import open
from os import path
from setuptools import setup, find_packages
from dotfiles import __version__

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.md'), encoding='utf8') as f:
    long_description = f.read()

requirements = [
    'click',
    'py',
]

test_requirements = [
    'pytest',
    'pytest-pep8',
    'pytest-flakes',
]

setup(
    name='dotfiles',
    version=__version__,
    description='Easily manage your dotfiles',
    long_description=long_description,
    long_description_content_type='text/markdown',
    url='https://github.com/jbernard/dotfiles',
    author='Jon Bernard',
    author_email='jbernard@jbernard.io',
    classifiers=[
        'Development Status :: 4 - Beta',
        'License :: OSI Approved :: ISC License (ISCL)'
        'Programming Language :: Python :: 2',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.6',
    ],
    packages=find_packages(),
    install_requires=requirements,
    extras_require={
        'dev': ['check-manifest'],
        'test': test_requirements,
    },
    entry_points={
        'console_scripts': [
            'dotfiles=dotfiles.cli:cli',
        ],
    },
    project_urls={
        'Bug Reports': 'https://github.com/jbernard/dotfiles/issues',
        'Source': 'https://github.com/jbernard/dotfiles',
    },

    # temporary
    setup_requires=['pytest-runner'],
    tests_require=test_requirements,
)