mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-03-22 20:45:07 +00:00
update for pypi
This commit is contained in:
54
setup.py
Normal file
54
setup.py
Normal file
@@ -0,0 +1,54 @@
|
||||
from setuptools import setup, find_packages
|
||||
from codecs import open
|
||||
from os import path
|
||||
import dotdrop
|
||||
|
||||
readme = 'README.md'
|
||||
here = path.abspath(path.dirname(__file__))
|
||||
|
||||
try:
|
||||
from pypandoc import convert
|
||||
read_readme = lambda f: convert(f, 'rst')
|
||||
except ImportError:
|
||||
print('\n[WARNING] pypandoc not found, could not convert \"{}\"\n'.format(readme))
|
||||
read_readme = lambda f: open(f, 'r').read()
|
||||
|
||||
VERSION = dotdrop.__version__
|
||||
|
||||
setup(
|
||||
name='dotdrop',
|
||||
version=VERSION,
|
||||
|
||||
description='Save your dotfiles once, deploy them everywhere',
|
||||
long_description=read_readme(readme),
|
||||
url='https://github.com/deadc0de6/dotdrop',
|
||||
download_url = 'https://github.com/deadc0de6/dotdrop/archive/v'+VERSION+'.tar.gz',
|
||||
|
||||
author='deadc0de6',
|
||||
author_email='deadc0de6@foo.bar',
|
||||
|
||||
license='GPLv3',
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||
],
|
||||
|
||||
keywords='dotfiles jinja2',
|
||||
packages=find_packages(exclude=['tests*']),
|
||||
install_requires=['docopt', 'Jinja2', 'PyYAML'],
|
||||
|
||||
extras_require={
|
||||
'dev': ['check-manifest'],
|
||||
'test': ['coverage', 'pytest', 'pytest-cov'],
|
||||
},
|
||||
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'dotdrop=dotdrop:main',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user