-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (46 loc) · 1.68 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# Package imports
from deleter import __version__
with open("README.md", "r", encoding="utf-8") as f:
long_desc = f.read()
setup(
name='deleter',
version=__version__,
packages=find_packages(),
url='https://github.com/desty2k/deleter',
license='MIT',
author='Wojciech Wentland',
author_email='wojciech.wentland@int.pl',
description='Delete Python scripts at exit',
long_description_content_type='text/markdown',
python_requires='>=3.6',
zip_safe=False, # don't use eggs
long_description=long_desc,
entry_points={
'console_scripts': [
'deleter=deleter.__main__:main_entry',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords=['delete', 'remove', 'autoremove', 'autodelete', 'exit', 'atexit'],
)