-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
37 lines (34 loc) · 1.08 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
import codecs
from setuptools import setup
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="rm_protection",
version="0.1.3",
license='MIT',
description="A safe alternative for \"rm\" with minimum difference.",
author='Alan Chen',
author_email='me@zenan.ch',
url='https://github.com/alanzchen/rm-protection',
packages=['rm_protection'],
package_data={
'rm_protection': ['README.rst', 'LICENSE']
},
install_requires=['future'],
entry_points={
'console_scripts': [
'rm-p=rm_protection.rm_p:rm',
'protect=rm_protection.protect:protect',
],
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System',
],
long_description=long_description,
)