-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (36 loc) · 1.07 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
# from setuptools import find_packages
# python setup.py sdist
# twine upload dist/*
def get_markdown_description():
with codecs.open('README.md', encoding='utf-8') as fp:
long_description = fp.read()
return long_description
return ''
setup(
name='secure_delete',
version='0.0.2',
description='A tool for safely delete files.',
author='wevsty',
author_email='[email protected]',
url='https://github.com/wevsty/secure_delete',
packages= ['secure_delete'],
package_data={
'secure_delete': ['README.md', 'LICENSE']
},
entry_points={
'console_scripts': [
'secdel = secure_delete.secure_delete_cmd:main',
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
],
long_description=get_markdown_description(),
long_description_content_type='text/markdown'
)