-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
65 lines (62 loc) · 2.01 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
requirements = [
'structlog',
'fileperms',
'toml',
]
extras_requirements = {
'extended': ['Jinja2', 'colorama', ],
'secure': ['cryptography', ],
}
with open('README.md') as f:
readme = f.read()
setup(
name='smtpc',
version='0.9.2',
description='',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/msztolcman/smtpc',
project_urls={
'GitHub: issues': 'https://github.com/msztolcman/smtpc/issues',
'GitHub: repo': 'https://github.com/msztolcman/smtpc',
},
download_url='https://github.com/msztolcman/smtpc',
author='Marcin Sztolcman',
author_email='[email protected]',
license='MIT',
zip_safe=False,
include_package_data=True,
packages=find_packages(),
python_requires='>=3.7',
entry_points={
'console_scripts': [
'smtpc = smtpc.cli:main',
],
},
install_requires=requirements,
extras_require=extras_requirements,
# see: https://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Communications',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Utilities',
'Topic :: Software Development',
'Topic :: System :: Systems Administration',
]
)