-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dev] refactoring for pip-compatible packaging
- Loading branch information
Showing
10 changed files
with
81 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Scihook-CppGen | ||
|
||
|
||
|
||
# Features | ||
|
||
|
||
|
||
# Installation | ||
|
||
Installing is done in the standard way : | ||
|
||
..code:: bash | ||
|
||
# From a tar archive | ||
pip install path/to/scihook-cppgen.tar | ||
|
||
# From download sources | ||
git clone git@.../scihook-cppgen.git | ||
cd scihook-cppgen | ||
pip install . | ||
|
||
Previous commands should install `SciHook-CppGen` as well as other dependencies | ||
on which the project depends. | ||
|
||
# Test | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
__author__ = """Dorian Leroy""" | ||
__email__ = "[email protected]" | ||
__version__ = "0.0.1" | ||
__version__ = "0.1.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...pgen/scihook-cppgen/trigger_template.mako → ...pgen/scihook_cppgen/trigger_template.mako
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
|
||
"""The setup script.""" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
from scihook_cppgen import __version__ | ||
|
||
|
||
with open("README.md") as readme_file: | ||
readme = readme_file.read() | ||
|
||
requirements = [ | ||
"Click", | ||
"clang", | ||
"libclang", | ||
"Mako" | ||
] | ||
|
||
setup( | ||
author="Dorian Leroy", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
], | ||
description="An instrumentation generator for SciHook", | ||
entry_points={"console_scripts": ["cppgen=scihook_cppgen.cli.cli:cppgen"]}, | ||
python_requires=">=3", | ||
install_requires=requirements, | ||
long_description=readme, | ||
include_package_data=True, | ||
keywords="scihook-cppgen", | ||
name="scihook-cppgen", | ||
packages=find_packages(), | ||
version=__version__, | ||
zip_safe=False, | ||
) |