-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (30 loc) · 862 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
import sys
import os
from setuptools import setup, find_packages
# make pymailmove available in path
sys.path.insert(0, os.path.abspath('.'))
import pymailmove
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='pymailmove',
version=pymailmove.__version__,
description='Package for copying mail between different locations',
long_description=readme,
author='Stefan Becker',
author_email='ich@funbaker.de',
url='https://github.com/funbaker/pymailmove',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['click'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
entry_points={
'console_scripts': [
'pymailmove = pymailmove.cli:main'
]
}
)