-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
30 lines (27 loc) · 781 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
#!/usr/bin/env python
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"([^"]*)"',
open("suplemon/main.py").read(),
re.M
).group(1)
files = ["config/*.json", "themes/*", "modules/*.py", "linelight/*.py"]
setup(name="Suplemon",
version=version,
description="Console text editor with multi cursor support.",
author="Richard Lewis",
author_email="richrd.lewis@gmail.com",
url="https://github.com/richrd/suplemon/",
packages=["suplemon"],
package_data={"": files},
include_package_data=True,
install_requires=[
"pygments",
"wcwidth"
],
entry_points={
"console_scripts": ["suplemon=suplemon.cli:main"]
},
classifiers=[]
)