-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 806 Bytes
/
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
from setuptools import setup
VERSION = "1.0"
with open('README.md') as fobj:
long_description = fobj.read().strip()
if __name__ == "__main__":
setup(
name="Snape",
version=VERSION,
author="Kai Xia",
author_email="xiaket@gmail.com",
url="/~https://github.com/xiaket/Snape",
description="Minimalism snippet manager",
long_description=long_description,
py_modules=['Snape'],
entry_points={
'console_scripts': ['Snape = Snape:main']
},
keywords=['snippet manager', 'snippets'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
],
)