-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (35 loc) · 1.14 KB
/
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
37
38
39
from setuptools import setup
import feed2maildir
def readme():
with open('README.rst') as f:
return f.read()
def deps():
with open('requirements.txt') as f:
return f.readlines()
setup(name='feed2maildir',
version=feed2maildir.VERSION,
python_requires='>=3.2,<4',
description='Convert feeds to maildirs',
long_description=readme(),
url='https://github.com/sulami/feed2maildir',
author='Robin Schroer',
author_email='feed2maildir@sulami.xyz',
license='ISC',
packages=['feed2maildir'],
test_suite = 'feed2maildir.tests',
zip_safe=False,
install_requires=deps(),
scripts=['scripts/feed2maildir',],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: ISC License (ISCL)',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications :: Email',
'Topic :: Internet',
'Topic :: Utilities',
]
)