-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 763 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
setup(
name = "completeme",
version = open("VERSION").read().strip(),
description = "Automagic ctrl+t filename completion to launch in your favorite editor",
long_description = open("README.rst").read(),
author = "Matt Spitz",
author_email = "askmefor@my.email",
url = "https://github.com/mattspitz/completeme",
packages = ["completeme"],
package_data = {"completeme": ["conf/completeme.json"]},
entry_points = {
"console_scripts": [
"completeme = completeme:main"
]
},
scripts = ["setup_completeme_key_binding.sh"],
install_requires = ["setuptools"]
)