-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 752 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 752 Bytes
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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="westerly",
version="0.2.1",
description="Turns west-const C/C++ source files into east-const",
long_description=README,
long_description_content_type="text/markdown",
url="http://github.com/biasmv/westerly",
author="Marco Biasini",
author_email="mvbiasini@gmail.com",
license="lgpl3",
packages=[],
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Software Development :: Code Generators",
],
install_requires=["pygments", "click",],
scripts=["bin/westerly"],
zip_safe=False,
)