-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 700 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 700 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(name="py2cpp",
version="0.0.1",
description="A Python to C++ compiler",
url="https://github.com/mugwort-rc/py2cpp",
license="GPL3",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GPL",
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Compilers"
],
keywords=["python3", "C++", "ast"],
author="mugwort_rc",
author_email="mugwort [dot] rc [at] gmail [dot] com",
zip_safe=False,
install_requires=["six"],
packages=find_packages(),
)