-
Notifications
You must be signed in to change notification settings - Fork 5
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
3 changed files
with
21 additions
and
17 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,6 @@ | ||
pytest | ||
pytest-mock | ||
prospector | ||
mypy | ||
coverage | ||
antlr4-tools |
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,3 @@ | ||
flamapy-fw~=2.0.0.dev2 | ||
uvlparser~=2.0.1 | ||
afmparser~=1.0.3 |
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 |
---|---|---|
|
@@ -4,10 +4,19 @@ | |
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
def read_requirements(file): | ||
with open(file, "r") as fh: | ||
return fh.read().splitlines() | ||
|
||
# Read requirements from the requirements.txt file | ||
requirements = read_requirements("requirements.txt") | ||
|
||
# Read development requirements from the dev-requirements.txt file | ||
dev_requirements = read_requirements("requirements-dev.txt") | ||
|
||
setuptools.setup( | ||
name="flamapy-fm", | ||
version="2.0.0.dev1", | ||
version="2.0.0.dev2", | ||
author="Flamapy", | ||
author_email="[email protected]", | ||
description="flamapy-fm is a plugin to Flamapy module", | ||
|
@@ -21,22 +30,8 @@ | |
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.9', | ||
install_requires=[ | ||
'flamapy-fw~=2.0.0.dev1', | ||
'uvlparser~=2.0.1', | ||
'afmparser~=1.0.3', | ||
], | ||
install_requires=requirements, | ||
extras_require={ | ||
'dev': [ | ||
'pytest', | ||
'pytest-mock', | ||
'prospector', | ||
'mypy', | ||
'coverage', | ||
'antlr4-tools', | ||
] | ||
'dev': dev_requirements | ||
}, | ||
dependency_links=[ | ||
'flamapy~=2.0.0.dev1', | ||
], | ||
) |