-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
42 additions
and
14 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,14 +1,43 @@ | ||
[build-system] | ||
requires = ["flit_core >=3.2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "dynapyt" | ||
authors = [{name = "Aryaz Eghbali", email = "[email protected]"}, {name = "Michael Pradel", email = "[email protected]"}] | ||
dynamic = ["version"] | ||
description = "Dynamic analysis framework for Python" | ||
readme = "README.md" | ||
license = {file = "LICENSE"} | ||
classifiers = ["License :: OSI Approved :: MIT License"] | ||
dynamic = ["version", "description"] | ||
license = "" | ||
requires-python = ">=3.6" | ||
authors = [ | ||
{ name = "Aryaz Eghbali", email = "[email protected]" }, | ||
{ name = "Michael Pradel", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"libcst", | ||
] | ||
|
||
[project.urls] | ||
Home = "https://github.com/sola-st/dynapyt" | ||
"Bug Tracker" = "https://github.com/sola-st/DynaPyt/issues" | ||
Homepage = "https://github.com/sola-st/DynaPyt" | ||
|
||
[tool.hatch.version] | ||
path = "src/dynapyt/__init__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = [ | ||
"src/dynapyt", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel.force-include] | ||
"src/dynapyt/utils/hierarchy.json" = "src/dynapyt/utils/hierarchy.json" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/src", | ||
] |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="dynapyt", | ||
version="0.2.2", | ||
version="0.2.3", | ||
author="Aryaz Eghbali", | ||
author_email="[email protected]", | ||
description="Dynamic analysis framework for Python", | ||
|
@@ -23,14 +23,14 @@ | |
package_dir={"": "src", "test": "test"}, | ||
packages=setuptools.find_packages(where="src"), | ||
package_data={ | ||
'dynapyt': ['utils/hierarchy.json'], | ||
"dynapyt": ["utils/hierarchy.json"], | ||
}, | ||
include_package_data=True, | ||
python_requires=">=3.6", | ||
setup_requires=[ | ||
'libcst', | ||
"libcst", | ||
], | ||
install_requires=[ | ||
'libcst', | ||
"libcst", | ||
], | ||
) |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""DynaPyt""" | ||
__version__ = '0.2.2' | ||
__version__ = "0.2.3" |
9f121fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addresses #13 and #25