File tree 5 files changed +34
-77
lines changed
5 files changed +34
-77
lines changed Original file line number Diff line number Diff line change 29
29
python -m compileall mumailer
30
30
pycodestyle mumailer
31
31
python -m flake8 mumailer
32
- python setup.py install --optimize=1 -- root=build
32
+ python -m pip install --root=build -e .
33
33
ls -laR build
Original file line number Diff line number Diff line change 7
7
- python -m compileall .
8
8
- pycodestyle .
9
9
- python -m flake8 .
10
- - python setup.py install --optimize=1 -- root=build
10
+ - python -m pip install --root=build install -e .
11
11
- ls -laR build
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [' setuptools' , ' wheel' ]
3
+ build-backend = ' setuptools.build_meta'
Original file line number Diff line number Diff line change 1
- [egg_info]
2
- egg_base = ../build
1
+ [metadata]
2
+ name = MuMailer
3
+ version = attr: mumailer.constants.APP_VERSION
4
+ description = Simple mailer agent using SMTP
5
+ long_description = file: README.md
6
+ long_description_content_type = text/markdown
7
+ author = Fabio Castelli
8
+
9
+ url = http://www.muflone.com/mumailer/
10
+ license = GPLv3+
11
+ license_files = LICENSE
12
+ classifiers =
13
+ Development Status :: 1 - Planning
14
+ Intended Audience :: Developers
15
+ License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
16
+ Operating System :: OS Independent
17
+ Programming Language :: Python :: 3
18
+ Programming Language :: Python :: 3.9
19
+ Topic :: Software Development :: Libraries :: Python Modules
3
20
4
- [build]
5
- build_base = ../build
21
+ [options]
22
+ packages = mumailer
23
+ include_package_data = True
24
+ install_requires =
25
+ pyyaml ==6.0
6
26
7
- [bdist_wheel ]
8
- dist_dir = ../dist
27
+ [options.package_data ]
28
+ mumailer = samples/*.py
9
29
10
- [bdist]
11
- dist_dir = ../dist
12
-
13
- [sdist]
14
- dist_dir = ../dist
30
+ [options.entry_points]
31
+ console_scripts =
32
+ mumailer = mumailer.samples.profile_smtp:main
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments